diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index d04b3d679b4..91f5f7c26f1 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -5071,6 +5071,11 @@
github = "thedavidmeister";
name = "David Meister";
};
+ thefloweringash = {
+ email = "lorne@cons.org.nz";
+ github = "thefloweringash";
+ name = "Andrew Childs";
+ };
thesola10 = {
email = "thesola10@bobile.fr";
github = "thesola10";
diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml
index 7f0c1d21e37..d7ae05086ed 100644
--- a/nixos/doc/manual/release-notes/rl-1909.xml
+++ b/nixos/doc/manual/release-notes/rl-1909.xml
@@ -23,6 +23,11 @@
End of support is planned for end of April 2020, handing over to 20.03.
+
+
+ PHP now defaults to PHP 7.3, updated from 7.2.
+
+
diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix
index 555733aab7c..4ae35875c0f 100644
--- a/nixos/modules/services/networking/bird.nix
+++ b/nixos/modules/services/networking/bird.nix
@@ -14,15 +14,6 @@ let
bird6 = "1.9.x with IPv6 suport";
bird2 = "2.x";
}.${variant};
- configFile = pkgs.stdenv.mkDerivation {
- name = "${variant}.conf";
- text = cfg.config;
- preferLocalBuild = true;
- buildCommand = ''
- echo -n "$text" > $out
- ${pkg}/bin/${birdBin} -d -p -c $out
- '';
- };
in {
###### interface
options = {
@@ -41,14 +32,24 @@ let
###### implementation
config = mkIf cfg.enable {
environment.systemPackages = [ pkg ];
+
+ environment.etc."bird/${variant}.conf".source = pkgs.writeTextFile {
+ name = "${variant}.conf";
+ text = cfg.config;
+ checkPhase = ''
+ ${pkg}/bin/${birdBin} -d -p -c $out
+ '';
+ };
+
systemd.services.${variant} = {
description = "BIRD Internet Routing Daemon (${descr})";
wantedBy = [ "multi-user.target" ];
reloadIfChanged = true;
+ restartTriggers = [ config.environment.etc."bird/${variant}.conf".source ];
serviceConfig = {
Type = "forking";
Restart = "on-failure";
- ExecStart = "${pkg}/bin/${birdBin} -c ${configFile} -u ${variant} -g ${variant}";
+ ExecStart = "${pkg}/bin/${birdBin} -c /etc/bird/${variant}.conf -u ${variant} -g ${variant}";
ExecReload = "${pkg}/bin/${birdc} configure";
ExecStop = "${pkg}/bin/${birdc} down";
CapabilityBoundingSet = [ "CAP_CHOWN" "CAP_FOWNER" "CAP_DAC_OVERRIDE" "CAP_SETUID" "CAP_SETGID"
diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix
index 14a3832b0dc..f1aa9064bef 100644
--- a/nixos/modules/system/boot/networkd.nix
+++ b/nixos/modules/system/boot/networkd.nix
@@ -669,7 +669,7 @@ let
};
};
- commonMatchText = def: ''
+ commonMatchText = def: optionalString (def.matchConfig != {}) ''
[Match]
${attrsToSection def.matchConfig}
'';
diff --git a/pkgs/applications/editors/emacs-modes/elpa-generated.nix b/pkgs/applications/editors/emacs-modes/elpa-generated.nix
index 2c560ba599f..7f0a318741f 100644
--- a/pkgs/applications/editors/emacs-modes/elpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/elpa-generated.nix
@@ -95,6 +95,21 @@
license = lib.licenses.free;
};
}) {};
+ advice-patch = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
+ elpaBuild {
+ pname = "advice-patch";
+ ename = "advice-patch";
+ version = "0.1";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/advice-patch-0.1.el";
+ sha256 = "0mb7linzsnf72vzkn9h6w2i2b0h92h6qzkapyrv61vh5a67k1m0s";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/advice-patch.html";
+ license = lib.licenses.free;
+ };
+ }) {};
aggressive-indent = callPackage ({ cl-lib ? null
, elpaBuild
, emacs
@@ -163,10 +178,10 @@
elpaBuild {
pname = "arbitools";
ename = "arbitools";
- version = "0.97";
+ version = "0.976";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/arbitools-0.97.el";
- sha256 = "0fx1z4mw3v42xzixsj80xw56pg00bch04galkjbxbqzm25nl4aha";
+ url = "https://elpa.gnu.org/packages/arbitools-0.976.el";
+ sha256 = "08lvm921zhm22aghz17pps0b5g4f1xyyrl0qisdvd98kz1ajq7xr";
};
packageRequires = [ cl-lib ];
meta = {
@@ -268,10 +283,10 @@
elpaBuild {
pname = "avy";
ename = "avy";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/avy-0.4.0.tar";
- sha256 = "1vbp37ndv5930x120n0isxxxfs8d5wqlrbnxvp6h3ahbbv0zdcsn";
+ url = "https://elpa.gnu.org/packages/avy-0.5.0.tar";
+ sha256 = "1xfcml38qmrwdd0rkhwrvv2s7dbznwhk3vy9pjd6ljpg22wkb80d";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -309,6 +324,21 @@
license = lib.licenses.free;
};
}) {};
+ bnf-mode = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }:
+ elpaBuild {
+ pname = "bnf-mode";
+ ename = "bnf-mode";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/bnf-mode-0.4.2.tar";
+ sha256 = "04wl563hxgjbhz6hhwvysdfvdni9fm7kahy5wxkyqxi1sy64gn7d";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/bnf-mode.html";
+ license = lib.licenses.free;
+ };
+ }) {};
brief = callPackage ({ elpaBuild, fetchurl, lib }:
elpaBuild {
pname = "brief";
@@ -332,10 +362,10 @@
elpaBuild {
pname = "buffer-expose";
ename = "buffer-expose";
- version = "0.4.1";
+ version = "0.4.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/buffer-expose-0.4.1.el";
- sha256 = "05b1mhcv3860g93a7myqqrhmb9gpp19b4bcxhmdbmf4m0f7p9fw4";
+ url = "https://elpa.gnu.org/packages/buffer-expose-0.4.3.el";
+ sha256 = "1blpvan31mvqhzal16sdn564jnfnn7xsfn8zb65ijndh23drljwd";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -512,10 +542,10 @@
elpaBuild {
pname = "company";
ename = "company";
- version = "0.9.9";
+ version = "0.9.10";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/company-0.9.9.tar";
- sha256 = "1qinkz8gwgc27p3p3c9kddrrwx0jb4w0vgx7jq8fwpfj1n92m1rv";
+ url = "https://elpa.gnu.org/packages/company-0.9.10.tar";
+ sha256 = "1w6a11rzsx5iyxn76xarzbghm460j0ampqxlh4j12bswvbn7swnd";
};
packageRequires = [ emacs ];
meta = {
@@ -546,10 +576,10 @@
elpaBuild {
pname = "company-math";
ename = "company-math";
- version = "1.1";
+ version = "1.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/company-math-1.1.tar";
- sha256 = "10yi5jmv7njcaansgy2aw7wm1j3acch1j9x6lfg9mxk0j21zvgwp";
+ url = "https://elpa.gnu.org/packages/company-math-1.3.tar";
+ sha256 = "0fc9ms0s9w81sxp3qcfva3n3d2qys0pj19pnm621a6v1xdsc7i1l";
};
packageRequires = [ company math-symbol-lists ];
meta = {
@@ -705,10 +735,10 @@
elpaBuild {
pname = "debbugs";
ename = "debbugs";
- version = "0.17";
+ version = "0.18";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/debbugs-0.17.tar";
- sha256 = "0zclh2nxj5p10n214sxyxy3ca07l5s9p5spk0xp1smr6nzn0w7gb";
+ url = "https://elpa.gnu.org/packages/debbugs-0.18.tar";
+ sha256 = "00kich80zdg7v3v613f9prqddkpwpm1nf9sj10f0n6wh15rzwv07";
};
packageRequires = [ cl-lib emacs soap-client ];
meta = {
@@ -810,10 +840,10 @@
elpaBuild {
pname = "disk-usage";
ename = "disk-usage";
- version = "1.3.1";
+ version = "1.3.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/disk-usage-1.3.1.el";
- sha256 = "1jkwlg7w4090a7byfjh30mjz1libls8n71pphmn3973hqwaclnr7";
+ url = "https://elpa.gnu.org/packages/disk-usage-1.3.3.el";
+ sha256 = "0h1jwznd41gi0vg830ilfgm01q05zknikzahwasm9cizwm2wyizj";
};
packageRequires = [ emacs ];
meta = {
@@ -900,10 +930,10 @@
elpaBuild {
pname = "ebdb";
ename = "ebdb";
- version = "0.6.6";
+ version = "0.6.8";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ebdb-0.6.6.tar";
- sha256 = "1jgx099z9xg47v698qjbk5q70bakfw7zxaj25z4jz1mq64fvk6b5";
+ url = "https://elpa.gnu.org/packages/ebdb-0.6.8.tar";
+ sha256 = "0bcs4f2l6cdg6hx3crk0vchhljhgwd1ik8n0p001gs1mk91178jp";
};
packageRequires = [ cl-lib emacs seq ];
meta = {
@@ -956,6 +986,21 @@
license = lib.licenses.free;
};
}) {};
+ eev = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
+ elpaBuild {
+ pname = "eev";
+ ename = "eev";
+ version = "20190425";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/eev-20190425.tar";
+ sha256 = "0wffwdkk68hcnkggrfmx0ag3pmapdzwzq54sx8y0m68aw0by90y1";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/eev.html";
+ license = lib.licenses.free;
+ };
+ }) {};
eglot = callPackage ({ elpaBuild
, emacs
, fetchurl
@@ -985,10 +1030,10 @@
elpaBuild {
pname = "el-search";
ename = "el-search";
- version = "1.11.4";
+ version = "1.12.5";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/el-search-1.11.4.tar";
- sha256 = "152kx9s72h94n6nsrn84cmfb264cdw61ny5fn0n3fa581ipy34nm";
+ url = "https://elpa.gnu.org/packages/el-search-1.12.5.tar";
+ sha256 = "0q6fnjp2hh8p1l7wj7645szlz6qxdfy71s0xljjrmc2836i32xzc";
};
packageRequires = [ cl-print emacs stream ];
meta = {
@@ -1162,10 +1207,10 @@
elpaBuild {
pname = "flymake";
ename = "flymake";
- version = "1.0.5";
+ version = "1.0.6";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/flymake-1.0.5.el";
- sha256 = "1zxzad84gcbdfh3pp606sspy8zkgxvngbzbimc2cam4pjcmwfx1y";
+ url = "https://elpa.gnu.org/packages/flymake-1.0.6.el";
+ sha256 = "10n9vnabiz3m5gs3azc76x7y1p9qhc6aspgygw7awq9ff6hhkhbw";
};
packageRequires = [ emacs ];
meta = {
@@ -1177,10 +1222,10 @@
elpaBuild {
pname = "fountain-mode";
ename = "fountain-mode";
- version = "2.6.2";
+ version = "2.7.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/fountain-mode-2.6.2.el";
- sha256 = "0ysxk9ap919scg2zz0psw8hk1dj35ys9p0havswsjzm46k43xd6z";
+ url = "https://elpa.gnu.org/packages/fountain-mode-2.7.1.el";
+ sha256 = "198ls0rvzgpb942mvjyljgbaxp05wjys1a003bfq528przv0vpaz";
};
packageRequires = [ emacs ];
meta = {
@@ -1207,10 +1252,10 @@
elpaBuild {
pname = "frog-menu";
ename = "frog-menu";
- version = "0.2.2";
+ version = "0.2.8";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/frog-menu-0.2.2.el";
- sha256 = "0kv31p42gmi01xalbvwksk10l28ascdr214bmv1z22dipv0zm30i";
+ url = "https://elpa.gnu.org/packages/frog-menu-0.2.8.el";
+ sha256 = "18f937lvhw2dxwldahim13pr3ppndssjp0dis95iaspiwg9mwc4h";
};
packageRequires = [ avy emacs posframe ];
meta = {
@@ -1308,6 +1353,23 @@
license = lib.licenses.free;
};
}) {};
+ gnu-elpa-keyring-update = callPackage ({ elpaBuild
+ , fetchurl
+ , lib }:
+ elpaBuild {
+ pname = "gnu-elpa-keyring-update";
+ ename = "gnu-elpa-keyring-update";
+ version = "2019.3";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/gnu-elpa-keyring-update-2019.3.tar";
+ sha256 = "1zw65kag25abimg088m4h8vj2nd4y5nc4qal6fsda0dldckfv1w0";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/gnu-elpa-keyring-update.html";
+ license = lib.licenses.free;
+ };
+ }) {};
gnugo = callPackage ({ ascii-art-to-unicode
, cl-lib ? null
, elpaBuild
@@ -1332,10 +1394,10 @@
elpaBuild {
pname = "gnus-mock";
ename = "gnus-mock";
- version = "0.4.0";
+ version = "0.4.2";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/gnus-mock-0.4.0.tar";
- sha256 = "058bd4f8za9bxayrd2j5b05qvk8lxxm8mmfwxb73d7k15z3z3l3s";
+ url = "https://elpa.gnu.org/packages/gnus-mock-0.4.2.tar";
+ sha256 = "04ddmdm2hykgr2y9g2yzmjp3fszhaywwnxhiy608cpvqdjwlwhn7";
};
packageRequires = [];
meta = {
@@ -1373,12 +1435,12 @@
license = lib.licenses.free;
};
}) {};
- guess-language = callPackage ({ advice
- , cl-lib ? null
+ guess-language = callPackage ({ cl-lib ? null
, elpaBuild
, emacs
, fetchurl
- , lib }:
+ , lib
+ , nadvice }:
elpaBuild {
pname = "guess-language";
ename = "guess-language";
@@ -1387,7 +1449,7 @@
url = "https://elpa.gnu.org/packages/guess-language-0.0.1.el";
sha256 = "11a6m2337j4ncppaf59yr2vavvvsph2qh51d12zmq58g9wh3d7wz";
};
- packageRequires = [ advice cl-lib emacs ];
+ packageRequires = [ cl-lib emacs nadvice ];
meta = {
homepage = "https://elpa.gnu.org/packages/guess-language.html";
license = lib.licenses.free;
@@ -1489,10 +1551,10 @@
elpaBuild {
pname = "hyperbole";
ename = "hyperbole";
- version = "7.0.2";
+ version = "7.0.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/hyperbole-7.0.2.tar";
- sha256 = "1hgwa740941a9s5wf1cqf76h3af8qbiiw9sc76biz6m3vx0hy1zs";
+ url = "https://elpa.gnu.org/packages/hyperbole-7.0.3.tar";
+ sha256 = "1mvplaxfjji00gg8rkhidfsdl8knwi6c0ai149zm4djsfaww3ikh";
};
packageRequires = [ emacs ];
meta = {
@@ -1534,10 +1596,10 @@
elpaBuild {
pname = "ivy";
ename = "ivy";
- version = "0.10.0";
+ version = "0.11.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ivy-0.10.0.tar";
- sha256 = "01m58inpd8jbfvzqsrwigzjfld9a66nf36cbya26dmdy7vwdm8xm";
+ url = "https://elpa.gnu.org/packages/ivy-0.11.0.tar";
+ sha256 = "1pxapdc7jarqc8lf3a3fsn4nsi4j146dh07f89xkj087psq30v50";
};
packageRequires = [ emacs ];
meta = {
@@ -1744,10 +1806,10 @@
elpaBuild {
pname = "load-relative";
ename = "load-relative";
- version = "1.3";
+ version = "1.3.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/load-relative-1.3.el";
- sha256 = "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps";
+ url = "https://elpa.gnu.org/packages/load-relative-1.3.1.el";
+ sha256 = "1m37scr82lqqy954fchjxrmdh4lngrl4d1yzxhp3yfjhsydizhrj";
};
packageRequires = [];
meta = {
@@ -1819,10 +1881,10 @@
elpaBuild {
pname = "math-symbol-lists";
ename = "math-symbol-lists";
- version = "1.1";
+ version = "1.2.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/math-symbol-lists-1.1.tar";
- sha256 = "06klvnqipz0n9slw72fxmhrydrw6bi9fs9vnn8hrja8gsqf8inlz";
+ url = "https://elpa.gnu.org/packages/math-symbol-lists-1.2.1.el";
+ sha256 = "015q44qg9snrpz04syz89f9f79pzg5h7w88nh84p38klynkx2f86";
};
packageRequires = [];
meta = {
@@ -2038,10 +2100,10 @@
elpaBuild {
pname = "nhexl-mode";
ename = "nhexl-mode";
- version = "1.2";
+ version = "1.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/nhexl-mode-1.2.el";
- sha256 = "031h22p564qdvr9khs05qcba06pmsk68cr7zyc7c04hfr3y3ziaf";
+ url = "https://elpa.gnu.org/packages/nhexl-mode-1.3.el";
+ sha256 = "1fcy4ybr12dvswmzaqkv4798snb1x1y7ldxwrsgjv5sx7bb5j60z";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -2139,6 +2201,21 @@
license = lib.licenses.free;
};
}) {};
+ olivetti = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
+ elpaBuild {
+ pname = "olivetti";
+ ename = "olivetti";
+ version = "1.7.1";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/olivetti-1.7.1.el";
+ sha256 = "1bk41bqri0ycpab46c7a6i5k3js1pm5k6d76y91mp3l2izy2bxwj";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/olivetti.html";
+ license = lib.licenses.free;
+ };
+ }) {};
omn-mode = callPackage ({ elpaBuild, fetchurl, lib }:
elpaBuild {
pname = "omn-mode";
@@ -2158,10 +2235,10 @@
elpaBuild {
pname = "on-screen";
ename = "on-screen";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/on-screen-1.3.2.el";
- sha256 = "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv";
+ url = "https://elpa.gnu.org/packages/on-screen-1.3.3.el";
+ sha256 = "0ga4hw23ki583li2z2hr7l6hk1nc2kdg4afndg06cm9jn158wza7";
};
packageRequires = [ cl-lib ];
meta = {
@@ -2469,8 +2546,7 @@
license = lib.licenses.free;
};
}) {};
- realgud = callPackage ({ cl-lib ? null
- , elpaBuild
+ realgud = callPackage ({ elpaBuild
, emacs
, fetchurl
, lib
@@ -2480,23 +2556,141 @@
elpaBuild {
pname = "realgud";
ename = "realgud";
- version = "1.4.5";
+ version = "1.5.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/realgud-1.4.5.tar";
- sha256 = "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24";
+ url = "https://elpa.gnu.org/packages/realgud-1.5.0.tar";
+ sha256 = "0bfshrgkfrfb1d8insnb5n25230xd0scdk6bijhgh34q2phjy2fy";
};
- packageRequires = [
- cl-lib
- emacs
- load-relative
- loc-changes
- test-simple
- ];
+ packageRequires = [ emacs load-relative loc-changes test-simple ];
meta = {
homepage = "https://elpa.gnu.org/packages/realgud.html";
license = lib.licenses.free;
};
}) {};
+ realgud-ipdb = callPackage ({ elpaBuild
+ , emacs
+ , fetchurl
+ , lib
+ , load-relative
+ , realgud }:
+ elpaBuild {
+ pname = "realgud-ipdb";
+ ename = "realgud-ipdb";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/realgud-ipdb-1.0.0.tar";
+ sha256 = "1ljh2igm6na92jdvnn4f51019v3klc6k03nayxf6qxzaxwq2w254";
+ };
+ packageRequires = [ emacs load-relative realgud ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/realgud-ipdb.html";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-jdb = callPackage ({ cl-lib ? null
+ , elpaBuild
+ , emacs
+ , fetchurl
+ , lib
+ , load-relative
+ , realgud }:
+ elpaBuild {
+ pname = "realgud-jdb";
+ ename = "realgud-jdb";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/realgud-jdb-1.0.0.tar";
+ sha256 = "081lqsxbg6cxv8hz8s0z2gbdif9drp5b0crbixmwf164i4h8l4gc";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/realgud-jdb.html";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-lldb = callPackage ({ elpaBuild
+ , emacs
+ , fetchurl
+ , lib
+ , load-relative
+ , realgud }:
+ elpaBuild {
+ pname = "realgud-lldb";
+ ename = "realgud-lldb";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/realgud-lldb-1.0.2.tar";
+ sha256 = "0nqbvknhvw5lwf4i44q8wvh4y4s9mvs5kn7lskg3xicl464ag1d0";
+ };
+ packageRequires = [ emacs load-relative realgud ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/realgud-lldb.html";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-node-debug = callPackage ({ cl-lib ? null
+ , elpaBuild
+ , emacs
+ , fetchurl
+ , lib
+ , load-relative
+ , realgud }:
+ elpaBuild {
+ pname = "realgud-node-debug";
+ ename = "realgud-node-debug";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/realgud-node-debug-1.0.0.tar";
+ sha256 = "1wyh6apy289a3qa1bnwv68x8pjkpqy4m18ygqnr4x759hjkq3nir";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/realgud-node-debug.html";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-node-inspect = callPackage ({ cl-lib ? null
+ , elpaBuild
+ , emacs
+ , fetchurl
+ , lib
+ , load-relative
+ , realgud }:
+ elpaBuild {
+ pname = "realgud-node-inspect";
+ ename = "realgud-node-inspect";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/realgud-node-inspect-1.0.0.tar";
+ sha256 = "16cx0rq4zx5k0y75j044dbqzrzs1df3r95rissmhfgsi5m2qf1h2";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/realgud-node-inspect.html";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-trepan-ni = callPackage ({ cl-lib ? null
+ , elpaBuild
+ , emacs
+ , fetchurl
+ , lib
+ , load-relative
+ , realgud }:
+ elpaBuild {
+ pname = "realgud-trepan-ni";
+ ename = "realgud-trepan-ni";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/realgud-trepan-ni-1.0.1.tar";
+ sha256 = "0vakfzlk4pgqi66mdvwqhzgdsnks6clgnj7cjjbi80v3ipkfdnak";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/realgud-trepan-ni.html";
+ license = lib.licenses.free;
+ };
+ }) {};
register-list = callPackage ({ elpaBuild, fetchurl, lib }:
elpaBuild {
pname = "register-list";
@@ -2516,10 +2710,10 @@
elpaBuild {
pname = "relint";
ename = "relint";
- version = "1.6";
+ version = "1.8";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/relint-1.6.el";
- sha256 = "17nyy3zqpqgs22lrrpdm0k56xnhj5l3y2y3lnmhcqw63xksgbsyk";
+ url = "https://elpa.gnu.org/packages/relint-1.8.el";
+ sha256 = "1bl6m2h7131acbmr0kqfnjjpv2syiv2mxfnm61g874ynnvkmmkm3";
};
packageRequires = [ xr ];
meta = {
@@ -2623,6 +2817,21 @@
license = lib.licenses.free;
};
}) {};
+ shelisp = callPackage ({ elpaBuild, fetchurl, lib }:
+ elpaBuild {
+ pname = "shelisp";
+ ename = "shelisp";
+ version = "0.9.1";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/shelisp-0.9.1.el";
+ sha256 = "15z8rpx8nhx53q77z5fqcpww255di80lb5mm28mnn2myalrr8b59";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/shelisp.html";
+ license = lib.licenses.free;
+ };
+ }) {};
shen-mode = callPackage ({ elpaBuild, fetchurl, lib }:
elpaBuild {
pname = "shen-mode";
@@ -2653,6 +2862,21 @@
license = lib.licenses.free;
};
}) {};
+ smalltalk-mode = callPackage ({ elpaBuild, fetchurl, lib }:
+ elpaBuild {
+ pname = "smalltalk-mode";
+ ename = "smalltalk-mode";
+ version = "3.2.92";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/smalltalk-mode-3.2.92.tar";
+ sha256 = "0zlp1pk88m1gybhnvcmm0bhrj6zvnjzhc26r1i4d56pyh6vwivfj";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/smalltalk-mode.html";
+ license = lib.licenses.free;
+ };
+ }) {};
smart-yank = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "smart-yank";
@@ -2762,10 +2986,10 @@
elpaBuild {
pname = "ssh-deploy";
ename = "ssh-deploy";
- version = "3.0";
+ version = "3.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ssh-deploy-3.0.tar";
- sha256 = "0lv9qwm1dhcd2l2mnhjfpqsz6xx0wabjg5j5sm3425fjsaqws6m7";
+ url = "https://elpa.gnu.org/packages/ssh-deploy-3.1.tar";
+ sha256 = "09m1ljp68rribypls5mzffmdv86jkg9wq4bdb7d1qkdjyr3f2hgn";
};
packageRequires = [ emacs ];
meta = {
@@ -3194,10 +3418,10 @@
elpaBuild {
pname = "websocket";
ename = "websocket";
- version = "1.8";
+ version = "1.9";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/websocket-1.8.tar";
- sha256 = "0dcxmnnm8z7cvsc7nkb822a1g6w03klp7cijjnfq0pz84p3w9cd9";
+ url = "https://elpa.gnu.org/packages/websocket-1.9.tar";
+ sha256 = "00sd0dawpjcr79w6klya5ywq9r1p86d97z62vqpjij6yg5qv470f";
};
packageRequires = [ cl-lib ];
meta = {
@@ -3314,10 +3538,10 @@
elpaBuild {
pname = "xr";
ename = "xr";
- version = "1.10";
+ version = "1.12";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/xr-1.10.tar";
- sha256 = "16p68rj5h609pnbp7y0jiiq1zkbksh4qqi1q8yby3ldj5x9sfpwc";
+ url = "https://elpa.gnu.org/packages/xr-1.12.tar";
+ sha256 = "1vv87h0h8ldc1mbsn45w5z1m6jq8j2js4xz23a9ixdby06g60y3g";
};
packageRequires = [];
meta = {
@@ -3362,10 +3586,10 @@
elpaBuild {
pname = "zones";
ename = "zones";
- version = "2018.12.28";
+ version = "2019.4.30";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/zones-2018.12.28.el";
- sha256 = "1jd7wy5w96xppdlcl4dzq4wqhr2x6f4hzjps9f4kz256l4ia6hm0";
+ url = "https://elpa.gnu.org/packages/zones-2019.4.30.el";
+ sha256 = "0f0ryd9wnkg7vh2jv30bqhpzzkaf0gc2ysmib6y36s3m8c2sa9b6";
};
packageRequires = [];
meta = {
diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
index 10910539d03..9b260433245 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
@@ -245,12 +245,12 @@
melpaBuild {
pname = "abs-mode";
ename = "abs-mode";
- version = "20190326.1002";
+ version = "20190404.1604";
src = fetchFromGitHub {
owner = "abstools";
repo = "abs-mode";
- rev = "a9a512992f681669dc59fe9ca86f12b9688b5454";
- sha256 = "0v6d7cxnj4mil7c7y4m1csiznl6rmzxg9snwhhv6wdqfw112kn8j";
+ rev = "31fb36f9206203062b8c618fef6ad484e44af226";
+ sha256 = "0h0zsjqhjm18ppmaqv2kn4q1mchc1igcz80zwz8523n2w2gk9bri";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aabccc4061e7764069796e12ee9688b67651cf70/recipes/abs-mode";
@@ -437,12 +437,12 @@
melpaBuild {
pname = "ac-dcd";
ename = "ac-dcd";
- version = "20190326.1245";
+ version = "20190425.207";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "ac-dcd";
- rev = "143be7d67eeb03929f01fc04ee79db8f18f35604";
- sha256 = "1xms02m8r5n2glzrw6kp5jdnqkar46g8kpq46sg5m1x61q9ny9iq";
+ rev = "9d444523ffa92a763ea8f532b8001829a51a2557";
+ sha256 = "1fkpvr7mix9wvhd6pgbcj6mrmhrffvlh5sp8wp5m48j0qc3wx7mi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/64142a4b14531409f45f02a8053ed8948f48221d/recipes/ac-dcd";
@@ -924,12 +924,12 @@
melpaBuild {
pname = "ac-php";
ename = "ac-php";
- version = "20190406.716";
+ version = "20190423.1922";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "bd5aa196a4ece8fd5f606fdbf0b27a61d5dbd4dd";
- sha256 = "1apbsa63rvnf0jczrpvn9jxvgam8sn2lhzlxapn9b6pwgivlps4x";
+ rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b";
+ sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php";
@@ -950,23 +950,24 @@
, melpaBuild
, php-mode
, popup
- , s }:
+ , s
+ , xcscope }:
melpaBuild {
pname = "ac-php-core";
ename = "ac-php-core";
- version = "20190406.1615";
+ version = "20190531.2322";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "998313d7ebb775261b64a5347697d4926c75d3f1";
- sha256 = "1lin8lsgmb31vn2rcry1bpmjgrwz4cjccdn7vyf96klw5a49a4wg";
+ rev = "19b34b56ebc0eaabf9b1f4a8ac6819bde9855d2b";
+ sha256 = "02j0dwzbvi744ybdqwx8dan1ahl2yar7cw20n619vbmxn0r6pml2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core";
sha256 = "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn";
name = "recipe";
};
- packageRequires = [ dash f php-mode popup s ];
+ packageRequires = [ dash f php-mode popup s xcscope ];
meta = {
homepage = "https://melpa.org/#/ac-php-core";
license = lib.licenses.free;
@@ -1415,12 +1416,12 @@
melpaBuild {
pname = "ace-window";
ename = "ace-window";
- version = "20190326.242";
+ version = "20190527.651";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "ace-window";
- rev = "301c762f2fe36737ada479d9037776b1ec3741e3";
- sha256 = "1d8jnpb6kxvv5rfmprgfpfv3vs537pwj0y1g597yx6xdl0ilan3m";
+ rev = "138a80cbc4e9ed17d3a085a3687f5223a142a9a3";
+ sha256 = "1b9b5zjm7lkdnj3zrk9sh271jdx96wd267774781dlf29i8mgm9q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe131d3c2ea498e4df30ba539a6b91c00f5b07/recipes/ace-window";
@@ -1509,9 +1510,11 @@
license = lib.licenses.free;
};
}) {};
- activity-watch-mode = callPackage ({ emacs
+ activity-watch-mode = callPackage ({ cl
+ , emacs
, fetchFromGitHub
, fetchurl
+ , json ? null
, lib
, melpaBuild
, projectile
@@ -1519,19 +1522,19 @@
melpaBuild {
pname = "activity-watch-mode";
ename = "activity-watch-mode";
- version = "20181228.34";
+ version = "20190423.829";
src = fetchFromGitHub {
owner = "pauldub";
repo = "activity-watch-mode";
- rev = "27a0841b32dfd2b691a1dcf3a4a50d74660676b1";
- sha256 = "1hfmll3g33529pshzvh2gxqr0h53p1v68wq0zlq2h2wfml89bzr9";
+ rev = "c2ad321952524d88dd34842a6989b6e2d8acb646";
+ sha256 = "1fan25w5zb33i8mbd06iwz8vjac0alcv1r73h9hyzdkn8ivl6k3s";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9780c413da8001651191fb8f9708fe9691d714cf/recipes/activity-watch-mode";
sha256 = "0k0ai6658gb43c4ylrq66zqzrfh6ksvkf0kxj2qx8a5a1aw9bd4d";
name = "recipe";
};
- packageRequires = [ emacs projectile request ];
+ packageRequires = [ cl emacs json projectile request ];
meta = {
homepage = "https://melpa.org/#/activity-watch-mode";
license = lib.licenses.free;
@@ -1899,6 +1902,32 @@
license = lib.licenses.free;
};
}) {};
+ aio = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "aio";
+ ename = "aio";
+ version = "20190601.53";
+ src = fetchFromGitHub {
+ owner = "skeeto";
+ repo = "emacs-aio";
+ rev = "0e8a18f1bbb5f7be0f88d8e02ef13494736d63bc";
+ sha256 = "1aikvka4s97p5s26vclrnamgj8agx1j8ls6q3x7mxf8mhpv4ghqz";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95744cc13e7ac8d9acd794004d951f62e5880fa4/recipes/aio";
+ sha256 = "0sd8g2w4n9r2ndmp353v89xvky8043vmd92v2ggbl45chhpjl5zw";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/aio";
+ license = lib.licenses.free;
+ };
+ }) {};
airline-themes = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -2073,12 +2102,12 @@
melpaBuild {
pname = "alect-themes";
ename = "alect-themes";
- version = "20190203.1312";
+ version = "20190506.740";
src = fetchFromGitHub {
owner = "alezost";
repo = "alect-themes";
- rev = "588eb9ef66c319705a4d94003eacd90ad9de29c2";
- sha256 = "16ycqbd8g1gv8y5qk0j1q2ka4lfbgqpcdfa0mshjmfnw0kjvyshc";
+ rev = "da7305075d292cc1909bf26dc5634bc3cc8d2603";
+ sha256 = "06nsfmydlcdqi4fp3nn6yz4xys38f3q196pf3bmmdqgg7pbcm259";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/84c25a290ae4bcc4674434c83c66ae128e4c4282/recipes/alect-themes";
@@ -2289,12 +2318,12 @@
melpaBuild {
pname = "all-the-icons-ivy";
ename = "all-the-icons-ivy";
- version = "20190114.49";
+ version = "20190508.1103";
src = fetchFromGitHub {
owner = "asok";
repo = "all-the-icons-ivy";
- rev = "5d9c6bd5e6484398dd596663d0afe4be730f6f9f";
- sha256 = "1d5jw9afpcs8g274fxd6zapxdg5wy096xv99y7r9ykbkfbfl6wz5";
+ rev = "babea626db20773de4c408acb2788e2b9c8277e3";
+ sha256 = "03fssygwia1gv35y6mzifnkg5cb4klaq240jfqmyfji9jq95jzrd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9496e6bb6f03f35444fb204860bc50e5e1b36214/recipes/all-the-icons-ivy";
@@ -2307,6 +2336,32 @@
license = lib.licenses.free;
};
}) {};
+ almost-mono-themes = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "almost-mono-themes";
+ ename = "almost-mono-themes";
+ version = "20190526.2354";
+ src = fetchFromGitHub {
+ owner = "cryon";
+ repo = "almost-mono-themes";
+ rev = "c3a85c1a665530a5d830665969725cdba8eceb75";
+ sha256 = "034k32xkr5ma415hlkbl35z0jxc4sa1inf87hg3y6lrlfl83fyjh";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71ca87a0dd28f911dd988e1c208896b1ec5bfcc7/recipes/almost-mono-themes";
+ sha256 = "1lv7c63lii8463mmsmxnldkwark2c6n46j9zvf990dhacwl4q1mg";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/almost-mono-themes";
+ license = lib.licenses.free;
+ };
+ }) {};
amd-mode = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -2349,6 +2404,32 @@
license = lib.licenses.free;
};
}) {};
+ ameba = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ameba";
+ ename = "ameba";
+ version = "20190503.513";
+ src = fetchFromGitHub {
+ owner = "veelenga";
+ repo = "ameba.el";
+ rev = "76258a17e9ac6dee05469740938920dc3b7a0bb9";
+ sha256 = "1crs6qq74krib1mi0z03d0r5xh0k3sf6j57g6s68v1x69zi9vc0a";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/ameba";
+ sha256 = "0500r0yihd208zc8cvdqgfn58a7mrhfnb0lqy509b4k0i8y0v5mq";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ameba";
+ license = lib.licenses.free;
+ };
+ }) {};
ammonite-term-repl = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -2359,12 +2440,12 @@
melpaBuild {
pname = "ammonite-term-repl";
ename = "ammonite-term-repl";
- version = "20190228.2316";
+ version = "20190511.1712";
src = fetchFromGitHub {
owner = "zwild";
repo = "ammonite-term-repl";
- rev = "c5c1f6e2491282983cf55573b48a3e8de06aaae5";
- sha256 = "061qvm6jqydsv7bgwcbaxh1d8ck3nab1szlql0ass1hsak6g028i";
+ rev = "e8fcb22099d58c8c2becff0c66a87acf46dab132";
+ sha256 = "05drkc8dz89i8j8y9smwz7yz0vhbg33cxb6bs1lh1mmhyw3kq9jp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cf0ece0efb1fcf0ea7364df0d35fca69862f5e9a/recipes/ammonite-term-repl";
@@ -2461,12 +2542,12 @@
melpaBuild {
pname = "amx";
ename = "amx";
- version = "20181011.1551";
+ version = "20190418.2030";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "amx";
- rev = "4b08edb34c4d9c807ef1a820a629cda15e2347a0";
- sha256 = "1vs9hrldg3amxv61m2gpph8fdjidsa7x17djxx23r7px5mhkwqgn";
+ rev = "b46e77d8ef9d1edf225e67055001f7e85048f842";
+ sha256 = "0hrgq6kmfqx21y0dpvhwd82rap75lnn2lzlhria893yvqc7phzn5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c55bfad05343b2b0f3150fd2b4adb07a1768c1c0/recipes/amx";
@@ -2534,6 +2615,32 @@
license = lib.licenses.free;
};
}) {};
+ android-env = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "android-env";
+ ename = "android-env";
+ version = "20190513.622";
+ src = fetchFromGitHub {
+ owner = "fernando-jascovich";
+ repo = "android-env.el";
+ rev = "e89361c53304f0db1120b031876b9a7ff992b8fb";
+ sha256 = "1qrjxg5bb2vg50cnmf8ifn3fs5vg55l2zydnx4j6yk7acicvj94m";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/570ad0e94736d9fd16f3909bcfa928a9153ea703/recipes/android-env";
+ sha256 = "1gfxrfg42rn2rzh5fr4w6h8ngczhl56jghfgrffz9x8wcxxmqgpr";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/android-env";
+ license = lib.licenses.free;
+ };
+ }) {};
android-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -2701,12 +2808,12 @@
melpaBuild {
pname = "annotate";
ename = "annotate";
- version = "20171110.2336";
+ version = "20190519.6";
src = fetchFromGitHub {
owner = "bastibe";
repo = "annotate.el";
- rev = "dedbd9e5d5286f1ca8ad73e489d408a20f06156c";
- sha256 = "12s5jc1i78x90s34ijljd75v1z6sisfrpix852gcisb9lpibbpz7";
+ rev = "09d0cd89e458779ca375ac28bc664ee2e20db530";
+ sha256 = "141pqfrrzbqaxxcr6m6ri9r6k1mg5i3cv8v2kili365cypnjdg1y";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae88b8e3b080501195d291012deab31aaf35f7/recipes/annotate";
@@ -3059,12 +3166,12 @@
melpaBuild {
pname = "apache-mode";
ename = "apache-mode";
- version = "20180723.2051";
+ version = "20190521.2013";
src = fetchFromGitHub {
owner = "emacs-php";
repo = "apache-mode";
- rev = "d2ac57942f852a727db4fc73004e1e8f046cb657";
- sha256 = "1srlkqa2bq2p1nyh6r7f3b2754dqlgw28h0wbafmdlfk12jc8xy3";
+ rev = "354f9302a8d805ac80d846adcd1cef10830b3d51";
+ sha256 = "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/apache-mode";
@@ -3211,12 +3318,12 @@
melpaBuild {
pname = "aproject";
ename = "aproject";
- version = "20150605.206";
+ version = "20190530.2013";
src = fetchFromGitHub {
owner = "vietor";
repo = "aproject";
- rev = "3c7d23c341862dfd77fd0a64775df12ddb44ab54";
- sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc";
+ rev = "702caf5392288dfd821b1e744fef0bb4fd9f9281";
+ sha256 = "18n3gsghj7sxxd6kpp21b2p7qwv93giwyr1zfvgbs8pzsbc8i9rx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/de10c48976352f273e8363c2f6fa60602ee86c9b/recipes/aproject";
@@ -3628,12 +3735,12 @@
melpaBuild {
pname = "async";
ename = "async";
- version = "20181223.2054";
+ version = "20190502.2356";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "emacs-async";
- rev = "81dc034572e963550c5403a2b3c28047e46b4029";
- sha256 = "04lxfpdfvbh67cv9i3j7jya56lv3q97qp5b75zfy1k4dzqhjzfpz";
+ rev = "bd68cc1ab1ac6af890e250bdaa12ffb1cb9649be";
+ sha256 = "02n46dqbpdjlj65s1aka6ky49rgv2rpn06lzpfxwxl7kkzclc5f8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/async";
@@ -3731,12 +3838,12 @@
melpaBuild {
pname = "atom-one-dark-theme";
ename = "atom-one-dark-theme";
- version = "20190107.821";
+ version = "20190605.946";
src = fetchFromGitHub {
owner = "jonathanchu";
repo = "atom-one-dark-theme";
- rev = "8714ebcb8f35a4a07fa98666eee2727f860da53a";
- sha256 = "1z2w3szxwvgzqlg8zbdaw3jancyg421zawcgc317dyx7dryrpb5j";
+ rev = "bbad275cd51dcee14c42be647b15c39ffb26aac0";
+ sha256 = "01df7z5mkpvl6lvcz0jn4jyvs2q94mszviqaxvc65wswrvxa05di";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3ba1c4625c9603372746a6c2edb69d65f0ef79f5/recipes/atom-one-dark-theme";
@@ -3946,12 +4053,12 @@
melpaBuild {
pname = "auth-source-pass";
ename = "auth-source-pass";
- version = "20190113.2049";
+ version = "20190528.1259";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "auth-password-store";
- rev = "e572c7a5a63710ddd2f979a83a4e16d248dc65c6";
- sha256 = "1127rdyyl77yvr6gb2daa11hfbz145iw5bm6dwzd1f82qyfa58iv";
+ rev = "4b8e5e2d35ac3de1933e6ea55b3d59f181f4568f";
+ sha256 = "017jlxvzg31wmxsp04y71fnk80qgwbigsdp2z35y94xqcfnpij3k";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e268441634a6e58a00e577d6e2292fa226c11b8/recipes/auth-source-pass";
@@ -4599,16 +4706,16 @@
melpaBuild {
pname = "auto-rename-tag";
ename = "auto-rename-tag";
- version = "20181215.2324";
+ version = "20190524.2328";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "auto-rename-tag";
- rev = "00080e323addaaca560842feb87ca688e7a3d9b6";
- sha256 = "1pksqhfw3np7lkw0xjhpsq3zv3zbxmq3561g77n2c503qyzjpmx8";
+ rev = "4bd41b3107d3971c9533f9d0c8718c299669cb78";
+ sha256 = "1g6kllnl625h6vmnps15a7ivpxq3k6s4vdxj50dj2i76g19wi2cn";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/edf44f990306d9edba7054cb8f530208e53d69bc/recipes/auto-rename-tag";
- sha256 = "058fn84sw15kdyxgnjzdi4lq6s9xg63cw8vzparh6km3xf2pqw0x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/auto-rename-tag";
+ sha256 = "0ysm559b2p2v2v39cssx5cviy2qb78cjvhmy76hih09qimg2azrz";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -5069,12 +5176,12 @@
melpaBuild {
pname = "avy";
ename = "avy";
- version = "20190404.155";
+ version = "20190520.247";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "avy";
- rev = "4d52b5cb7e1c565ca8dfe9c47b54330fd1a395bc";
- sha256 = "13226jg9ndlnlvy73847rinn8wpx94jw42cj3pp84qplys9zfr2y";
+ rev = "f91ae613a86187c8ca75e86f22e3f5ac9958399c";
+ sha256 = "0kkglpk7x2hps176yzymp112fgmxng1r3pfbb48hh9ivsbmzykl7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy";
@@ -5179,12 +5286,12 @@
melpaBuild {
pname = "avy-zap";
ename = "avy-zap";
- version = "20160921.1444";
+ version = "20190411.2020";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "avy-zap";
- rev = "6081738668ab726099ce1c711c580d9745dfaede";
- sha256 = "0byanv32kxsd1lzvyq82xmyfx4drx5j5i10whyyq8a5hhvrpg1qy";
+ rev = "f1089c96b290225032a09c14e87568958ac93438";
+ sha256 = "14ihz0bj1grpy25l5mapcmfjxw2pvcmkxi53vc2db73di8panv3p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/10a2a57c78ac1d8ab621031caa21e8574daeb9a0/recipes/avy-zap";
@@ -5233,12 +5340,12 @@
melpaBuild {
pname = "aws-snippets";
ename = "aws-snippets";
- version = "20180410.845";
+ version = "20190207.247";
src = fetchFromGitHub {
owner = "baron42bba";
repo = "aws-snippets";
- rev = "a2ebae582a8c8a5f5f16dbc42ecd2ded9d70fca8";
- sha256 = "08mbi5g321n4ir7a7ggxmh7qpl8pr06pg4rcsk8pklylvkf89k2w";
+ rev = "9cb1edaaa86609b51a7fbf39ec643cc5ae80eaa1";
+ sha256 = "1rzfzb19h5d0ikysxi0xcbyvv733kdmcmydpc7wwq9qkb31wck56";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/485aa401a6a14cd4a916474d9a7df12cdf45d591/recipes/aws-snippets";
@@ -5629,12 +5736,12 @@
melpaBuild {
pname = "bart-mode";
ename = "bart-mode";
- version = "20180131.1829";
+ version = "20190601.304";
src = fetchFromGitHub {
owner = "mschuldt";
repo = "bart-mode";
- rev = "f6b82f0df2e2b863be7b9383a22413a2fc77f9e0";
- sha256 = "09z1fk5wbdlqps1102l9fcccz4vb0wcxbbrc4w2r2xrphwjxy6wc";
+ rev = "f70b6c42452e47c0c6b3ebd4c90e555a9bedeec7";
+ sha256 = "0s47ijlnspndia6f1116g6nr6hnirmba6fkvdcvw4qm7mhn5xrc9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8f9cb09c07cb9fdef15de3e8dbfb6725d97dff6f/recipes/bart-mode";
@@ -5654,12 +5761,12 @@
melpaBuild {
pname = "base16-theme";
ename = "base16-theme";
- version = "20190329.1706";
+ version = "20190603.1342";
src = fetchFromGitHub {
owner = "belak";
repo = "base16-emacs";
- rev = "053c9da5ad0ecbac5652bcfbf3b5d1badb9ab272";
- sha256 = "1nhirkx4ww9spqxkvdwbsf6lhj6a4ln5r0q6fjr2pdxnx7d02skp";
+ rev = "880646d8c574e3b4eecfa870e135fc564766c93d";
+ sha256 = "1kmnwbm1jgmrs6jdc3mlmx6ga9dzhiqpqa8a9js6ws4rdl2iz7dr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/30862f6be74882cfb57fb031f7318d3fd15551e3/recipes/base16-theme";
@@ -5679,12 +5786,12 @@
melpaBuild {
pname = "bash-completion";
ename = "bash-completion";
- version = "20180519.920";
+ version = "20190516.1154";
src = fetchFromGitHub {
owner = "szermatt";
repo = "emacs-bash-completion";
- rev = "fbdc78b8770833752ac4bda28e2c3ea764bf8e76";
- sha256 = "1ihmj2nx8sr4cfx03xrpmiqjljri6wv5ib8rgnl8ip42nqhv2g6c";
+ rev = "61592a1ce11efdff1d18bb7675c651a8f914c10d";
+ sha256 = "09chkvcwy12h24wlb92hjyanrsfc1nc735h8bpi0ffy1i8lxmlfm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/bash-completion";
@@ -5802,6 +5909,50 @@
license = lib.licenses.free;
};
}) {};
+ battle-haxe = callPackage ({ async
+ , cl-lib ? null
+ , company
+ , dash
+ , dash-functional
+ , emacs
+ , f
+ , fetchFromGitHub
+ , fetchurl
+ , helm
+ , lib
+ , melpaBuild
+ , s }:
+ melpaBuild {
+ pname = "battle-haxe";
+ ename = "battle-haxe";
+ version = "20190421.1924";
+ src = fetchFromGitHub {
+ owner = "AlonTzarafi";
+ repo = "battle-haxe";
+ rev = "c25894ef8a148b568922e5c9a5c90c52c5de5e3c";
+ sha256 = "0zlrrxqj95kn4pw8qh8xhldikzfbja61lvjcy7xxhsv5nvgrzc9j";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75781ee881a8f3215ab40d47273c8a9d1fed7949/recipes/battle-haxe";
+ sha256 = "02x7hchk3jninas4mybn98m09wn1bfqqdjfq45b6rgw1am6mvvwz";
+ name = "recipe";
+ };
+ packageRequires = [
+ async
+ cl-lib
+ company
+ dash
+ dash-functional
+ emacs
+ f
+ helm
+ s
+ ];
+ meta = {
+ homepage = "https://melpa.org/#/battle-haxe";
+ license = lib.licenses.free;
+ };
+ }) {};
bazel-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -5810,12 +5961,12 @@
melpaBuild {
pname = "bazel-mode";
ename = "bazel-mode";
- version = "20180222.2253";
+ version = "20190606.100";
src = fetchFromGitHub {
owner = "codesuki";
repo = "bazel-mode";
- rev = "b7aa14516feaed40ee4910eafa81db719de0fe56";
- sha256 = "16yjxs62h8dm63nzc04i60bnbyhm2vrpvn98ap8rad6wib2ka3vj";
+ rev = "f07e75fc2dd97ba20e40806927409357aaad2496";
+ sha256 = "0grbvzqy4x6wh2951jsh5mmbhwbd6j5figqj7v9q5px5alprjqsl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3945f7eba7d5f248cace11a7946262ac2500b01a/recipes/bazel-mode";
@@ -5969,12 +6120,12 @@
melpaBuild {
pname = "bbdb-vcard";
ename = "bbdb-vcard";
- version = "20181005.319";
+ version = "20190410.1354";
src = fetchFromGitHub {
owner = "tohojo";
repo = "bbdb-vcard";
- rev = "3e8630a8c45add7b495d7ef290ba9f402b359489";
- sha256 = "0f4ccbffp5j1jzgpqb26dgsb8k3aikzam21ilqfcq8ac4sl6l4g6";
+ rev = "853cbcd882be137a5488c70328c25f5982aca657";
+ sha256 = "0r8xcxvzalf5g12mqy6w7yv34nxd8n2wcqa5ib06nf40n162nrwg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dd5d9027c49beae89f78d2a30dfa4bd070dff1bd/recipes/bbdb-vcard";
@@ -6267,6 +6418,32 @@
license = lib.licenses.free;
};
}) {};
+ better-jumper = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "better-jumper";
+ ename = "better-jumper";
+ version = "20190510.947";
+ src = fetchFromGitHub {
+ owner = "gilbertw1";
+ repo = "better-jumper";
+ rev = "2c04d4bc09da88c5b8b276c87d3f9f56e517144e";
+ sha256 = "1gzmhgr17mvxj1qvcisfq74dbb2rsgzx2wrbjf36jrwfzx7sdjxw";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b08970e3bd5d64e640158d98d7e3ab5031d82895/recipes/better-jumper";
+ sha256 = "0javbi799yijc3lb4dzkjwj4f4wxxrga9iixik544z98412ia8an";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/better-jumper";
+ license = lib.licenses.free;
+ };
+ }) {};
better-shell = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -6724,12 +6901,12 @@
melpaBuild {
pname = "bing-dict";
ename = "bing-dict";
- version = "20181110.1800";
+ version = "20190122.2102";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "bing-dict.el";
- rev = "51266b11bca22923c3a86bc101abf9145d1397d3";
- sha256 = "0c6d1kmgf9gyrqqfxisdlaavb4rx5scnh7dgqswlmj2fqws3yvna";
+ rev = "7ac91fa718a5fb4620ccc13a53b1b82de8005ac8";
+ sha256 = "0swx68wmrlgqx9kp6jfzsfvi6v0r55cyal0p6b2xh1gj6iwa61ml";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bing-dict";
@@ -6934,12 +7111,12 @@
melpaBuild {
pname = "blacken";
ename = "blacken";
- version = "20190301.605";
+ version = "20190521.141";
src = fetchFromGitHub {
owner = "proofit404";
repo = "blacken";
- rev = "17b48ee432d83517094635f8caaf2db1128d1db1";
- sha256 = "04202qk6jsckvwc0zwg8513wgfjrnf33cbkv03k3vzwg6zhgmn9z";
+ rev = "1874018ae242176d0780cdcd0109e8f9a123a914";
+ sha256 = "1zgx7j4cp51r2cdlyf744jgfpid4lz7fwwjxbm6cvcp9hv57v7wz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/69d9802996a338be937d61678f2cadf3497f6b85/recipes/blacken";
@@ -7149,12 +7326,12 @@
melpaBuild {
pname = "bm";
ename = "bm";
- version = "20181012.931";
+ version = "20190527.1410";
src = fetchFromGitHub {
owner = "joodland";
repo = "bm";
- rev = "b85d407b53e1d852c47fcea2a245a4e67e48c38a";
- sha256 = "1ypa1971yh6g0kximqxiv90h1l3m6fprwza6l88gwgackhg9wiz0";
+ rev = "637dacf4cb9112fdfb949706a704dd53cbe79c7e";
+ sha256 = "180b3rc13asrmsdh7v405d54jkrininvaj52xhp71vw91ng51dkn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/bm";
@@ -7206,12 +7383,12 @@
melpaBuild {
pname = "bnf-mode";
ename = "bnf-mode";
- version = "20190406.1326";
+ version = "20190514.347";
src = fetchFromGitHub {
owner = "sergeyklay";
repo = "bnf-mode";
- rev = "1dda3ef5f837959d007512d1278a02cf5babfe8e";
- sha256 = "12y4f4r6rrl4gj0ibql1dj0h4j0z5k78lbxf51d06c2y1xk4xr4b";
+ rev = "2f217ecf76fa775da4b28de7dd2b615460d9f8ad";
+ sha256 = "17nhy9mwaji230d3dhi3d40wibqviapa5h60mlm20mc5b2vb0vyd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/217bde4ccd2d68dc14b1bfee22fbc99cd4109952/recipes/bnf-mode";
@@ -7366,12 +7543,12 @@
melpaBuild {
pname = "boogie-friends";
ename = "boogie-friends";
- version = "20171024.1955";
+ version = "20190523.356";
src = fetchFromGitHub {
owner = "boogie-org";
repo = "boogie-friends";
- rev = "7fea709f13c6cb93e4ed672955484201ebe6c123";
- sha256 = "1sfw59vd2ah054va5q52wf22cdrinv5m207prfzdqs9bsq1qfdac";
+ rev = "079df882503b7a9fb4cd270f3eca1cc8131b49a9";
+ sha256 = "0swiy4ixdn2ps0hm13dppnpq0yk30x58a19whn99nlfdy5fkwhi1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5bdd06b82d002677c046876642efe1dc01bc3e77/recipes/boogie-friends";
@@ -7421,12 +7598,12 @@
melpaBuild {
pname = "boon";
ename = "boon";
- version = "20181014.227";
+ version = "20190529.149";
src = fetchFromGitHub {
owner = "jyp";
repo = "boon";
- rev = "675719ec1f6608a690fc613214920ac3c0d350a3";
- sha256 = "1h2mfvpsci60g7gwwwbb62n85sl1xvrmc1n2w3k8xvmszrmk05kq";
+ rev = "501adc6580a24a3dc59925ebcf31363ec2531cfa";
+ sha256 = "0wi6dvq25cd6594jwdiivm7as8j6mvr79982jk7jgk1r170yz9b0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon";
@@ -7450,12 +7627,12 @@
melpaBuild {
pname = "borg";
ename = "borg";
- version = "20181227.946";
+ version = "20190505.348";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "borg";
- rev = "5aad7edbaa8a37581af280db64f237619d6c8dc0";
- sha256 = "16zxl0pmr8z3a2akhnh8g4sd1r7dag4g8p75niych272z0g96cll";
+ rev = "940af3d437b299ef81ce73da4e4ec8c2f52d7a79";
+ sha256 = "0lg2inxzfz6pcblynna4fyi5lxnmbrpl095d6574d0pnn22zdx5a";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/878ab90d444f3a1fd2c9f9068ca7b477e218f1da/recipes/borg";
@@ -8778,12 +8955,12 @@
melpaBuild {
pname = "cal-china-x";
ename = "cal-china-x";
- version = "20180211.1101";
+ version = "20190518.357";
src = fetchFromGitHub {
owner = "xwl";
repo = "cal-china-x";
- rev = "e9b309065829af3a9a0c526509bd64d9228fdced";
- sha256 = "0wipcsr0dry2r9sw7lcz5hw16b5gpax7qr2nbdlcwj3j9axqipyg";
+ rev = "177f60e011606126f23c8ffed69458439f1c12e0";
+ sha256 = "1a0qdiihyc5qwz5j68hnpfp0fx3qbzgvzflrbfv072r7ldxzfi57";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c1098d34012fa72f8c8c30d5f0f495fdbe1d3d65/recipes/cal-china-x";
@@ -8983,12 +9160,12 @@
melpaBuild {
pname = "call-graph";
ename = "call-graph";
- version = "20190116.2304";
+ version = "20190507.105";
src = fetchFromGitHub {
owner = "beacoder";
repo = "call-graph";
- rev = "641d600c3cdb002fd99bcf8040e9c4f372cd5de6";
- sha256 = "0lbh2bhsj4xicyzcjnpp8794amaswc20ksh4qr7xcs6q8rgfpbbc";
+ rev = "495f192859c71e161f89aa14d530faf2df18139d";
+ sha256 = "0a2gn6a7f54j9x3qr3d2syrpwwxjbsdn41rzqp4jb64lmn4nv82m";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a6acf099e2510c82b4b03e2f35051afc3d28af45/recipes/call-graph";
@@ -9061,12 +9238,12 @@
melpaBuild {
pname = "caml";
ename = "caml";
- version = "20190121.716";
+ version = "20190413.505";
src = fetchFromGitHub {
owner = "ocaml";
repo = "caml-mode";
- rev = "cd1142f1e6a9ad8d763688877ce76b2a7436d750";
- sha256 = "1zzsjibiyl947fir1j0swzsq7pk4l1jh8dn86by24zgcpm14gj3c";
+ rev = "38ebde12d3d529e6ef8078967997d32226e69e82";
+ sha256 = "13gz0s7bnjsnab7wn8mk0zva7756hf68izqp9agd8vqnm0c75nlp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/42667ee0d64bce19ad9081a4fae163a9655641d4/recipes/caml";
@@ -9266,8 +9443,8 @@
sha256 = "14q76wdlnwg08ais2gpmdrjvshly1wp8p8ckyhdmnwq7x39qvh7d";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/cask";
- sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/606e62bacfc6b6fc1d8bff3e716b743e6f32b29a/recipes/cask";
+ sha256 = "17jv9hhwh3azwa8rc5iljr3c2kz6razq67mvsxi9qnywq4rhrgm9";
name = "recipe";
};
packageRequires = [ ansi cl-lib dash epl f package-build s shut-up ];
@@ -9475,12 +9652,12 @@
melpaBuild {
pname = "ccls";
ename = "ccls";
- version = "20181225.53";
+ version = "20190512.1857";
src = fetchFromGitHub {
owner = "MaskRay";
repo = "emacs-ccls";
- rev = "8345c08d1d8fb784d3cc8b35bfbaedfa1861cc2e";
- sha256 = "1bs4jx36vrkrdfr6ah6hcy19fyv73d39dgrl8w6j555ahswk2c9h";
+ rev = "2764ddd57b03646f0327ea680a954b4a67450aef";
+ sha256 = "16427jvzhjy8kpvlgl3qzkzppv98124hkgi8q8pv1h7m46k9lhh3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/be27a4022d58860917a659fce2b7d7791fbea4e2/recipes/ccls";
@@ -9550,12 +9727,12 @@
melpaBuild {
pname = "cdlatex";
ename = "cdlatex";
- version = "20140707.426";
+ version = "20190130.619";
src = fetchFromGitHub {
owner = "cdominik";
repo = "cdlatex";
- rev = "1d491c2dddb05cdace1ae0e1f56a36009b065d85";
- sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d";
+ rev = "90d785a94c0db7aa0043ea62f5807af3df155438";
+ sha256 = "1yhry3wrqh1ijc0n7140pnbwcamrgi89a75pg03zx0cqb5g6c8i6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cdlatex";
@@ -9684,12 +9861,12 @@
melpaBuild {
pname = "centered-cursor-mode";
ename = "centered-cursor-mode";
- version = "20180112.755";
+ version = "20190306.206";
src = fetchFromGitHub {
owner = "andre-r";
repo = "centered-cursor-mode.el";
- rev = "319636448ffb7dba5fade3b2599ed9c1fd3bf8c8";
- sha256 = "1fib5db8rjyjrr86nw1jvf30pz2zva0v21khyz7fkh2nkf8b3a7i";
+ rev = "152877108504c7cc6ebdcf51d08aea26506e2a6d";
+ sha256 = "0kks14ycvvrfm14hg18cv60gkijvgrija03pz6ibnmc34ab3gvjz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9a7a28caba49a20413dec3c3d0cc9c36b859834d/recipes/centered-cursor-mode";
@@ -9913,6 +10090,35 @@
license = lib.licenses.free;
};
}) {};
+ cfrs = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , posframe
+ , s }:
+ melpaBuild {
+ pname = "cfrs";
+ ename = "cfrs";
+ version = "20190603.1031";
+ src = fetchFromGitHub {
+ owner = "Alexander-Miller";
+ repo = "cfrs";
+ rev = "809cdc642a18f7c2de34bdfb6ad78b2d577dbc09";
+ sha256 = "152dwl4xn2xncq5s16vl9w6z40mllfvc9n4a567i36f73s95p7ia";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce16d27a9d73a5eaffebf7b0ff36d90c292248f/recipes/cfrs";
+ sha256 = "03mi5iz0yny2ddvp41l3yc49583zw0wqsv33rkycjfj562903syx";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs posframe s ];
+ meta = {
+ homepage = "https://melpa.org/#/cfrs";
+ license = lib.licenses.free;
+ };
+ }) {};
cftag-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -10593,6 +10799,7 @@
, fetchurl
, lib
, melpaBuild
+ , parseedn
, pkg-info
, queue
, seq
@@ -10601,12 +10808,12 @@
melpaBuild {
pname = "cider";
ename = "cider";
- version = "20190331.1314";
+ version = "20190606.223";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider";
- rev = "957617895e532217ec0082faf1e80743baf5d4f2";
- sha256 = "08l7q9ms0wby8r4aagcnw3dzqp20ahagpfwc2as787gd9hs45fac";
+ rev = "d5c551b9d44e4239db04887461efb747411336d6";
+ sha256 = "0shn1krnwa32pvnpyqj30w41xrk318c2jzf9bjbnj2887y28lndg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider";
@@ -10616,6 +10823,7 @@
packageRequires = [
clojure-mode
emacs
+ parseedn
pkg-info
queue
seq
@@ -10658,25 +10866,24 @@
, eval-sexp-fu
, fetchFromGitHub
, fetchurl
- , highlight
, lib
, melpaBuild }:
melpaBuild {
pname = "cider-eval-sexp-fu";
ename = "cider-eval-sexp-fu";
- version = "20160907.100";
+ version = "20190311.1452";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider-eval-sexp-fu";
- rev = "06fefc17ea8a87997d1f18b25e78d874b10299ad";
- sha256 = "1lhf5g5gi31pv2c80fsnw62zfikj3prbs6xwaikbywp48dzhx02y";
+ rev = "7fd229f1441356866aedba611fd0cf4e89b50921";
+ sha256 = "01gky548v3758fyr317lkwsc9aacab6m9d9vk1mrr3qyvmciwd51";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/947f4d106d70f95ca8aac124ab0d90b2975208df/recipes/cider-eval-sexp-fu";
sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq";
name = "recipe";
};
- packageRequires = [ emacs eval-sexp-fu highlight ];
+ packageRequires = [ emacs eval-sexp-fu ];
meta = {
homepage = "https://melpa.org/#/cider-eval-sexp-fu";
license = lib.licenses.free;
@@ -10883,12 +11090,12 @@
melpaBuild {
pname = "citeproc";
ename = "citeproc";
- version = "20180429.57";
+ version = "20190422.1317";
src = fetchFromGitHub {
owner = "andras-simonyi";
repo = "citeproc-el";
- rev = "44f147d228d2d652cdd404d31e987e14519c3eef";
- sha256 = "01cr362zgswplv0582hrw4y0wz5xgknd2a74ylffax38ws4lydd1";
+ rev = "fa45f1a16f1860b1d873daa75886218d70ab0f29";
+ sha256 = "06ldsw1668fgj5lrp8mk7c9bsxp1dsrl2s4f2j2yykl6rx0j3dyi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/20aa56e9a4809cee1082224b1b4e65921a48bda1/recipes/citeproc";
@@ -11251,12 +11458,12 @@
melpaBuild {
pname = "clj-refactor";
ename = "clj-refactor";
- version = "20190405.333";
+ version = "20190516.554";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clj-refactor.el";
- rev = "cd6b6fb30fc5a429ff209d20af2f2f304937fe99";
- sha256 = "0bn1bianch1f3c9pps7kxmk6lradmkgqa9bfjqr864w1yrv8yxv5";
+ rev = "9f508bbf7bf8dd439a78066a9d6fa47f4bc8f64f";
+ sha256 = "0kb5zcq8hy7s6ikln0fgfya4shhfvnbx1vigz7g733ppm27bxxsb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/clj-refactor";
@@ -11446,12 +11653,12 @@
melpaBuild {
pname = "clojure-mode";
ename = "clojure-mode";
- version = "20190324.2328";
+ version = "20190508.822";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "e898a949d6789acbea53fd036af786268b46c620";
- sha256 = "1hds3g0vcd12lhjjnjx7rr8xgll7vg8kxpk9hqbc72p563h1sy97";
+ rev = "a9cbe6a37f51da1c37035390d43500b437e8bff2";
+ sha256 = "1lam3927gmzzl78ikc4z1c5yc92w59fi3191qa4vg9y8qqslqxd0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode";
@@ -11739,12 +11946,12 @@
melpaBuild {
pname = "cmake-ide";
ename = "cmake-ide";
- version = "20190313.131";
+ version = "20190527.207";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "cmake-ide";
- rev = "bcd890250f8937bf624671cdfbe7e8a87f465f8c";
- sha256 = "08hrhcrbdl7wyflg7ijk44r5vhig383axn96vgb60nmj96iq5r8n";
+ rev = "6fc593e47d28bfe531d1029f61e4efeb2eefe982";
+ sha256 = "1yj3ah7mgarbl0zjqzvqnp9wl3aqsiarid6cwlc4fmcnpg6l6n9f";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/17e8a8a5205d222950dc8e9245549a48894b864a/recipes/cmake-ide";
@@ -11945,12 +12152,12 @@
melpaBuild {
pname = "code-archive";
ename = "code-archive";
- version = "20180705.1913";
+ version = "20190512.1437";
src = fetchFromGitHub {
owner = "mschuldt";
repo = "code-archive";
- rev = "735ba47be3db59d9af784f2a47f8585caa55a6fd";
- sha256 = "1q022cw22xzn2ragx113ir04z37ff8y66fgc7hzcs32xs3l03g6z";
+ rev = "b4e7cda87b9cd6548071f784c4883d6019bc3d14";
+ sha256 = "1h0g0ikpz5q1xsj547b83df268znn3ilibj1p42cxpdkfkylnr9q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a8d0832eff966874d90e1d5ac1043c03e96b1c25/recipes/code-archive";
@@ -12412,12 +12619,12 @@
melpaBuild {
pname = "color-theme-sanityinc-tomorrow";
ename = "color-theme-sanityinc-tomorrow";
- version = "20190314.1939";
+ version = "20190502.144";
src = fetchFromGitHub {
owner = "purcell";
repo = "color-theme-sanityinc-tomorrow";
- rev = "9b3ff865632226baaefd92852e27ad5e3dcd0c70";
- sha256 = "0dn9xsz1iwx9s398ynm8mk9xlf5yxvfbyqp9nsgfs4p8dd5cbiwz";
+ rev = "ecef4c09c5dfa9ebcc62867d3ccc023240bc2e1b";
+ sha256 = "1i7jcrk42wn2a7nsvyhzh3bh4fc12cykiwxj8vi39zii4v7rirqw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow";
@@ -12430,32 +12637,6 @@
license = lib.licenses.free;
};
}) {};
- color-theme-solarized = callPackage ({ color-theme
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "color-theme-solarized";
- ename = "color-theme-solarized";
- version = "20171024.825";
- src = fetchFromGitHub {
- owner = "sellout";
- repo = "emacs-color-theme-solarized";
- rev = "f3ca8902ea056fb8e46cb09f09c96294e31cd4ee";
- sha256 = "16d7adqi07lzzr0qipl1fbag9l8kiyr3xrqxi528pimcisbg85d3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/17096b452740bf6b7afa38e62df8e623494aa6b2/recipes/color-theme-solarized";
- sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf";
- name = "recipe";
- };
- packageRequires = [ color-theme ];
- meta = {
- homepage = "https://melpa.org/#/color-theme-solarized";
- license = lib.licenses.free;
- };
- }) {};
color-theme-x = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -12543,16 +12724,16 @@
melpaBuild {
pname = "com-css-sort";
ename = "com-css-sort";
- version = "20190319.137";
+ version = "20190517.52";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "com-css-sort";
- rev = "fd279a9ed89a8b9eb36e1be7764314b3b1be5e39";
- sha256 = "0nndx0xib03sqhswwvfw1cfzvh70f3qi8d7y5iqk10bpwkmansz0";
+ rev = "d002012500fbe4ccdde525d64b8f69015aded9ee";
+ sha256 = "108500i75c56111q1pbk8fwylr31xpz4w1bn0xc3hm2xwr843kbb";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5189ae21fc97f6b96024a3279a26e43ddc23ae29/recipes/com-css-sort";
- sha256 = "0hga2m735lvyj1wzybgp6wh1yv98xnandvavvg7g7mscvf2sl89f";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/com-css-sort";
+ sha256 = "153yhyqrlmarz8rpcvb0rr7f388fhyb2val4qx2pzpsimklrwrcb";
name = "recipe";
};
packageRequires = [ cl-lib emacs s ];
@@ -12883,12 +13064,12 @@
melpaBuild {
pname = "company";
ename = "company";
- version = "20190402.1623";
+ version = "20190430.1152";
src = fetchFromGitHub {
owner = "company-mode";
repo = "company-mode";
- rev = "5bd57455c611ce54c9acedc8c9d83a14ab4f12c5";
- sha256 = "1ny758skhg7n827583rm2m976sc9mkm2ivdrr2ibhz4ccham2d15";
+ rev = "ad6ff0eecca99dc5ac8b6a8a6174df7d2ad88ae7";
+ sha256 = "0cps5sl9iij1wrpcnhi7xqv58cqsrswhc8r7hj1c00w8288z978w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company";
@@ -13177,12 +13358,12 @@
melpaBuild {
pname = "company-coq";
ename = "company-coq";
- version = "20190222.1104";
+ version = "20190425.1151";
src = fetchFromGitHub {
owner = "cpitclaudel";
repo = "company-coq";
- rev = "93168e134099541a923e70f9d633c78de1aa0c6f";
- sha256 = "0qa96iq99cwlmylzbrknkg3fkhc1x4ngwlpz9rppgzlghpfb3xs7";
+ rev = "3262fcccc41eac8e1c589f4067dfff939ba72c5f";
+ sha256 = "14d4pkg8h1cwi4235wv3ml7l9a2dw6vxz2z8l6i1zhng5pi0vvk7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7f89e3097c654774981953ef125679fec0b5b7c9/recipes/company-coq";
@@ -13723,12 +13904,12 @@
melpaBuild {
pname = "company-lsp";
ename = "company-lsp";
- version = "20190325.2253";
+ version = "20190524.1907";
src = fetchFromGitHub {
owner = "tigersoldier";
repo = "company-lsp";
- rev = "4218f180688eb3ecba454d00b0e68931a0aef5c9";
- sha256 = "0pq4zxviy1cxp28dfnnrxxsi57g0d91chg1pshdhgcpcd7rb53rh";
+ rev = "cd1a41583f2d71baef44604a14ea71f49b280bf0";
+ sha256 = "0qxwl5w9l3bab35r9d8g2yfrykj6gzn8jz2b8h2rfkzd36k7zv11";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5125f53307c1af3d9ccf2bae3c25e7d23dfe1932/recipes/company-lsp";
@@ -13779,12 +13960,12 @@
melpaBuild {
pname = "company-math";
ename = "company-math";
- version = "20171016.814";
+ version = "20190507.1306";
src = fetchFromGitHub {
owner = "vspinu";
repo = "company-math";
- rev = "3481f03ebb6a613ff85b71ca8edd2d5842c49012";
- sha256 = "0nbnqgl2jly1n5nx20hr2i84r2shxjb3axv2p597b5kw2bdbsva5";
+ rev = "600e49449644f6835f9dc3501bc58461999e8ab9";
+ sha256 = "1ps2lpkzn8mjbpcbvvy1qz3xbgrh6951x8y9bsd1fm32drdph9lh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/company-math";
@@ -13916,12 +14097,12 @@
melpaBuild {
pname = "company-php";
ename = "company-php";
- version = "20190406.716";
+ version = "20190423.1922";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "bd5aa196a4ece8fd5f606fdbf0b27a61d5dbd4dd";
- sha256 = "1apbsa63rvnf0jczrpvn9jxvgam8sn2lhzlxapn9b6pwgivlps4x";
+ rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b";
+ sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php";
@@ -14057,12 +14238,12 @@
melpaBuild {
pname = "company-prescient";
ename = "company-prescient";
- version = "20190212.2235";
+ version = "20190523.1034";
src = fetchFromGitHub {
owner = "raxod502";
repo = "prescient.el";
- rev = "562d25a1c3c5b2e269d82f374f450e6aa90a970e";
- sha256 = "1ncplx5p3cffyzg9ygzqqxj0vpvwrz9rp2n4z6c375a78fyydrk0";
+ rev = "ae414dde56f3430867faf41c04e4c3df75f9c960";
+ sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b92c34e493bbefab1d7747b0855d1ab2f984cb7c/recipes/company-prescient";
@@ -14199,12 +14380,12 @@
melpaBuild {
pname = "company-restclient";
ename = "company-restclient";
- version = "20151202.401";
+ version = "20190426.612";
src = fetchFromGitHub {
owner = "iquiw";
repo = "company-restclient";
- rev = "12f05ab964ca811b5b8dcbe4f19e2eeba119cbe1";
- sha256 = "0bra9rsxng3zbxk0q1sny3rabf2iwzz00snr65xswayjddigp33k";
+ rev = "e5a3ec54edb44776738c13e13e34c85b3085277b";
+ sha256 = "0yp0hlrgcr6yy1xkjvfckys2k24x9xg7y6336ma61bdwn5lpv0x0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient";
@@ -14604,12 +14785,12 @@
melpaBuild {
pname = "composable";
ename = "composable";
- version = "20170723.2347";
+ version = "20190520.909";
src = fetchFromGitHub {
owner = "paldepind";
repo = "composable.el";
- rev = "ac981974f89607393cc61314aaa19672d45b0650";
- sha256 = "0xg46r6ibga27cdycbysm80n2ayi8vmxcff1b6bqjjrsc0wbdnac";
+ rev = "f5e6cf4d9fb41ab1d09bfac9aa7f5e8cf5e1d794";
+ sha256 = "094ds242xg0dxrpq18ab3qzs8dcpn2w5w0b0r6hn7ws76aq2bayh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1fc0f076198e4be46a33a26eea9f2d273dda12b8/recipes/composable";
@@ -14680,31 +14861,26 @@
license = lib.licenses.free;
};
}) {};
- conda = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
+ conda = callPackage ({ fetchFromGitHub
, fetchurl
, lib
- , melpaBuild
- , pythonic
- , s }:
+ , melpaBuild }:
melpaBuild {
pname = "conda";
ename = "conda";
- version = "20190129.1002";
+ version = "20190531.1107";
src = fetchFromGitHub {
owner = "necaris";
repo = "conda.el";
- rev = "bc2f133d15e037e9dd24d61af734784b4b0d916d";
- sha256 = "01iikrgljci3hv0v12dn07aqfq2yqky77h8kv48yv787gmlcx181";
+ rev = "7f2461b268af1d321f41cbf299a07f00f7305426";
+ sha256 = "1ccdl0836mm640qsxsf1ijxa6j4kzkjd7g38vldmji9jp25wyzac";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fcf762e34837975f5440a1d81a7f09699778123e/recipes/conda";
sha256 = "1hi292h6ccl7vkvyxcwwcdxw8q2brv3hy0mnlikzj2qy5pbnfg4y";
name = "recipe";
};
- packageRequires = [ dash emacs f pythonic s ];
+ packageRequires = [];
meta = {
homepage = "https://melpa.org/#/conda";
license = lib.licenses.free;
@@ -14824,12 +15000,12 @@
melpaBuild {
pname = "conllu-mode";
ename = "conllu-mode";
- version = "20190214.1317";
+ version = "20190215.1243";
src = fetchFromGitHub {
owner = "odanoburu";
repo = "conllu-mode";
- rev = "162846e03f8ccb9dcec393dbf98e9391cca1c070";
- sha256 = "122qz6igksbxvnbkyfnbx4i4qn3sr2kspqm7z9kl8mwl5x1bxa2d";
+ rev = "21d337937290c5bac3f578996ed8d672a916adc0";
+ sha256 = "0sh0dqa6jr16pfg587d4hh65pyg9dk0p781ipqli17dmr8x0gi69";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/444f943baddfeafe29708d6d68aeeeedbb7aa7bd/recipes/conllu-mode";
@@ -15006,12 +15182,12 @@
melpaBuild {
pname = "copy-as-format";
ename = "copy-as-format";
- version = "20190119.811";
+ version = "20190522.1958";
src = fetchFromGitHub {
owner = "sshaw";
repo = "copy-as-format";
- rev = "d2376c64334fe3de65d89d6d138a2187f9bf802f";
- sha256 = "0i158bkra7zgq75j08knq2camvlhbs2v8zrsxiyp0mc4q949xysd";
+ rev = "a0962b670e26b723ce304b14e3397da453aef84e";
+ sha256 = "0amgnl9d9sh69dh76vfb7ar6m995nka5zs3swa1pmqqnrmp8nr1w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe8a2113d1c15701abe7a7e0a68e939c3d789b/recipes/copy-as-format";
@@ -15197,12 +15373,12 @@
melpaBuild {
pname = "counsel";
ename = "counsel";
- version = "20190407.415";
+ version = "20190604.357";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "998890460ebb2860638f2e4d761977080cdcad34";
- sha256 = "185rp0asa0plnwkafl7rxb2z78b6lmyp8jn943b5j8h3wb3wcaa5";
+ rev = "92d5335caee6c8240fc2e0123858d2b239bffe0d";
+ sha256 = "0ldg6viwrn16wq6rd01jwq1ichad6z5h63zrqk9xwqd1p7b8vmjr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel";
@@ -15299,31 +15475,30 @@
license = lib.licenses.free;
};
}) {};
- counsel-dash = callPackage ({ counsel
- , dash
- , dash-functional
+ counsel-dash = callPackage ({ cl-lib ? null
+ , counsel
+ , dash-docs
, emacs
, fetchFromGitHub
, fetchurl
- , helm-dash
, lib
, melpaBuild }:
melpaBuild {
pname = "counsel-dash";
ename = "counsel-dash";
- version = "20160729.829";
+ version = "20190510.8";
src = fetchFromGitHub {
owner = "nathankot";
repo = "counsel-dash";
- rev = "07fa74a94ff4da5b6c8c4810f5e143e701b480d2";
- sha256 = "17h2m9zsadq270mkq12kmdzmpbfjiwjbg8n1rg2apqnm1ndgcwf8";
+ rev = "5856b8766956428c183a2df911a05f845d014041";
+ sha256 = "1x0y6w5ivicckllznvljad42hgmbnilkrx9bz7rs4clr1baxzvyh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8af4d854f972bfed3d2122b4c089f72d8b5f2a/recipes/counsel-dash";
sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk";
name = "recipe";
};
- packageRequires = [ counsel dash dash-functional emacs helm-dash ];
+ packageRequires = [ cl-lib counsel dash-docs emacs ];
meta = {
homepage = "https://melpa.org/#/counsel-dash";
license = lib.licenses.free;
@@ -15339,12 +15514,12 @@
melpaBuild {
pname = "counsel-etags";
ename = "counsel-etags";
- version = "20190323.1754";
+ version = "20190603.1945";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "counsel-etags";
- rev = "b8ff1b12ee6b9456969a5bd974a8ed470f1f1eb9";
- sha256 = "178idbpphsa486sas1242x954zd0vf8c1hlfhmahgsij5jjd1vyv";
+ rev = "fbeedab4ef1a3ea7ec3071580a31a4578d2c79ea";
+ sha256 = "19d6a1q8is1yjq4mc6p2hqwwwfwamnlj4xlpfa3z482zqs812xly";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/87528349a3ab305bfe98f30c5404913272817a38/recipes/counsel-etags";
@@ -15362,23 +15537,24 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild }:
+ , melpaBuild
+ , seq }:
melpaBuild {
pname = "counsel-gtags";
ename = "counsel-gtags";
- version = "20170326.559";
+ version = "20190422.801";
src = fetchFromGitHub {
- owner = "syohex";
+ owner = "FelipeLema";
repo = "emacs-counsel-gtags";
- rev = "220ebb48419ee6891ecbf9ea8fe130b494b17ee2";
- sha256 = "12ml45gwfh0lyvmf24pvryylrjx5g60yqpbjfcak7zvy7x5wmc1s";
+ rev = "3ebfd4159856e9dbd9531b2a43410f72175a90bb";
+ sha256 = "08n11nvf7p6clmha8r50r2fzp9f4nmrcm8j6byvn99vazdvych7p";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c7ccc35632219dbec5fdad7401545e7c071b910c/recipes/counsel-gtags";
- sha256 = "12qyb1lnzyd2rr4ankpqi30h0bj66ap5qw87y4605k0j44vhnsax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe8fe6af7826a4b73ac784fde8859130b9ad7096/recipes/counsel-gtags";
+ sha256 = "1vxxcqijn3nab4146p06vhw6dn8zwb7arbk1610bajsvkyid428y";
name = "recipe";
};
- packageRequires = [ counsel emacs ];
+ packageRequires = [ counsel emacs seq ];
meta = {
homepage = "https://melpa.org/#/counsel-gtags";
license = lib.licenses.free;
@@ -15585,12 +15761,12 @@
melpaBuild {
pname = "counsel-tramp";
ename = "counsel-tramp";
- version = "20190124.2351";
+ version = "20190524.146";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-counsel-tramp";
- rev = "ac7728bac51afdcb63cd85ad22a8be5737d9d66f";
- sha256 = "0nz0733x2b9b5nkwivvhv5c8747dng451na1sdfbkx5x9fjs5gc7";
+ rev = "5ed06027a313b27ab17a8c8fabbc30c0e424c3b2";
+ sha256 = "1qy9lf7cyv6hp9mmpwh92cpdcffbxzyzchx6878d5pmk9qh6xy92";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e1822b735b6bd533f658bd64ddccda29e19e9a5e/recipes/counsel-tramp";
@@ -15630,6 +15806,33 @@
license = lib.licenses.free;
};
}) {};
+ countdown = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , stream }:
+ melpaBuild {
+ pname = "countdown";
+ ename = "countdown";
+ version = "20190527.436";
+ src = fetchFromGitHub {
+ owner = "xuchunyang";
+ repo = "countdown.el";
+ rev = "c60b6ff13a2c36e731132ef8775b7d09c5ad963d";
+ sha256 = "1vws72q9yl3s65f3qsn2s4s6sv1fl1y8l8yc7lspxpscskp277p9";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce30233b21be706ab3aaeeb61d5110143fa47c89/recipes/countdown";
+ sha256 = "0rjhc54f5dj55442b44yhvpicg98jg1jj1n0bv6alx699575vmym";
+ name = "recipe";
+ };
+ packageRequires = [ emacs stream ];
+ meta = {
+ homepage = "https://melpa.org/#/countdown";
+ license = lib.licenses.free;
+ };
+ }) {};
cov = callPackage ({ elquery
, emacs
, f
@@ -15695,12 +15898,12 @@
melpaBuild {
pname = "coverlay";
ename = "coverlay";
- version = "20180518.1555";
+ version = "20190414.240";
src = fetchFromGitHub {
owner = "twada";
repo = "coverlay.el";
- rev = "8205a845d58755dd7640b2e2b5991bf842998935";
- sha256 = "1mppan4ml4dblwxdgr8pli7nj864frc7n7c6h47q4vfb4flg29n0";
+ rev = "0beae208d0e7d746a94385428bd61aa5cd7ea828";
+ sha256 = "1qf1s0997n6bfx50bd0jln25p7z6y8pfibijnbqcg2011xmv5dqh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/coverlay";
@@ -16087,12 +16290,12 @@
melpaBuild {
pname = "cryptol-mode";
ename = "cryptol-mode";
- version = "20190130.1344";
+ version = "20190531.1351";
src = fetchFromGitHub {
owner = "thoughtpolice";
repo = "cryptol-mode";
- rev = "1d6bc05380481056b0615670a890a8234d997da9";
- sha256 = "04cicqwmnwq80jydvgax27nyw8vxfcz5aiqlnslj36mh9qbjr01g";
+ rev = "81ebbde83f7cb75b2dfaefc09de6a1703068c769";
+ sha256 = "1y24hssckqi8bapm24b6zw7lagdsh3gaacvq5pscgnjbqpk2rlvp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/de12333bb429d84b2c214ac7ebb0219f67838f4f/recipes/cryptol-mode";
@@ -16105,32 +16308,6 @@
license = lib.licenses.free;
};
}) {};
- cryptsy-public-api = callPackage ({ fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cryptsy-public-api";
- ename = "cryptsy-public-api";
- version = "20141008.528";
- src = fetchFromGitHub {
- owner = "Sodaware";
- repo = "cryptsy-public-api.el";
- rev = "c65abdbb2fac49913c27b5183e3fad1092f78b3d";
- sha256 = "1hiip5q2vg729kzidj0jmq4idvqxhbkwvncfj9qnn51rmr23n17z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/cryptsy-public-api";
- sha256 = "1331nrx57136k09a7p6imv0k9g6w8ibpwn5xmv33dxc22hsmc41j";
- name = "recipe";
- };
- packageRequires = [ json ];
- meta = {
- homepage = "https://melpa.org/#/cryptsy-public-api";
- license = lib.licenses.free;
- };
- }) {};
crystal-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -16139,12 +16316,12 @@
melpaBuild {
pname = "crystal-mode";
ename = "crystal-mode";
- version = "20180826.2029";
+ version = "20190604.554";
src = fetchFromGitHub {
owner = "crystal-lang-tools";
repo = "emacs-crystal-mode";
- rev = "8649736fea8960a5e54c3ec934484f231a518ea5";
- sha256 = "0ggg1zi3x7jphqa83zkcd19x2j30bqkfysn8cl8xahrikwhxmh49";
+ rev = "34124f546ff5c1136aed95bf0059015f9f6a1d60";
+ sha256 = "09cmbw190w6aiwwc2bg349xx6vcv9b9ajw8m70ajb3653qnq3mw4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b9b47d7deecf0cf24a42b26d50021cb1219a69/recipes/crystal-mode";
@@ -16262,6 +16439,32 @@
license = lib.licenses.free;
};
}) {};
+ csproj-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "csproj-mode";
+ ename = "csproj-mode";
+ version = "20190514.1158";
+ src = fetchFromGitHub {
+ owner = "omajid";
+ repo = "csproj-mode";
+ rev = "889334f8cd08dc79d133149b4504e0e001f5a769";
+ sha256 = "0j330rrj6abr7xay1h2kajwa22npij0fdh30fk5z7zgas7jz735h";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49823bd653c3599bbc6662c99d0406e9886f1bab/recipes/csproj-mode";
+ sha256 = "08w22bfk6fs6cxyqxrcv3314vwmh868200axss5fsdfgbggs4vy1";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/csproj-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
css-autoprefixer = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -16463,6 +16666,32 @@
license = lib.licenses.free;
};
}) {};
+ ctune = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ctune";
+ ename = "ctune";
+ version = "20190527.1725";
+ src = fetchFromGitHub {
+ owner = "maurooaranda";
+ repo = "ctune";
+ rev = "276257231e5c19fa476e01077611b5bbcec9f852";
+ sha256 = "0s9zbgibkfn7yr9dkpbvvprrn2ak62gsfzjmw4qfqgrg4y3s4x7w";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/927ecd888bc00abff13f5fc335a88dffc2bf6779/recipes/ctune";
+ sha256 = "1ymy508h19w6c7z93nww9fzirzk84w24j3dpbj08d08bifndhj1q";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ctune";
+ license = lib.licenses.free;
+ };
+ }) {};
ctxmenu = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -17035,12 +17264,12 @@
melpaBuild {
pname = "danneskjold-theme";
ename = "danneskjold-theme";
- version = "20190222.200";
+ version = "20190508.1506";
src = fetchFromGitHub {
owner = "rails-to-cosmos";
repo = "danneskjold-theme";
- rev = "1a341399df66d008965fddb6348ae86d7e96d268";
- sha256 = "1cbrjqh8p4ia2psw0v0qvvlmx9g567b7xmwqgjm58x8x38003ym0";
+ rev = "b48bc0ef6fff2d41a083006b0db040eb2b2e7a8b";
+ sha256 = "0p3bniim9rb3hsnm1ay12kjyh67mvlqswixjp0v2g8q8srmals33";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme";
@@ -17068,12 +17297,12 @@
melpaBuild {
pname = "dante";
ename = "dante";
- version = "20190320.154";
+ version = "20190502.2345";
src = fetchFromGitHub {
owner = "jyp";
repo = "dante";
- rev = "d6be8fa2d49ac73b34578736ca6340573bbcb68a";
- sha256 = "1lhzdvgy4jkzfx4p3cnprb68wray2d36x0aqcnw5g2dw7w6vc7fz";
+ rev = "4170ff57f3fd9414915d7a72b805de8727bd81ee";
+ sha256 = "0ii3fi8fwnl5q7j7mw165r6sqvyq4g6ymhdlcwb74agkzbssgs87";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5afa8226077cbda4b76f52734cf8e0b745ab88e8/recipes/dante";
@@ -17101,12 +17330,12 @@
melpaBuild {
pname = "dap-mode";
ename = "dap-mode";
- version = "20190403.1040";
+ version = "20190524.2158";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "dap-mode";
- rev = "f8f0f005f536ff22f6ca935dd804fa9ecb134d6a";
- sha256 = "09ff6835aflmx0s1dj7bgn1m146c9cnd3j7dh54jrx1mcvywqrx4";
+ rev = "3440ea52f9062e2653d190bb1c5db42d5f73ca44";
+ sha256 = "1g7z8q1zc1b46khy11x6xv49nhxsvl90s2xarvfpmjvpic76bhn1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/67942b34975015dd6f2b5f6b43829cc13b1832c6/recipes/dap-mode";
@@ -17311,12 +17540,12 @@
melpaBuild {
pname = "darkokai-theme";
ename = "darkokai-theme";
- version = "20181019.1159";
+ version = "20190603.1219";
src = fetchFromGitHub {
owner = "sjrmanning";
repo = "darkokai";
- rev = "b887fc6080f8e021058bff7f53fad84c82c81a7a";
- sha256 = "1rjpzf6n9vclyqfdz1nqaf9ky2jhk9jn1jmx9h2bd4kil9bjbyrm";
+ rev = "a53815fbfb06604d7f51519c62cc11e507204a70";
+ sha256 = "01jd3y3kr4fplvdv32smbaxqa2dafs8vvp967jma7xm7r1frnbdw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/81387a5a70f7c42fbae16b52db765136795a37e1/recipes/darkokai-theme";
@@ -17337,12 +17566,12 @@
melpaBuild {
pname = "darktooth-theme";
ename = "darktooth-theme";
- version = "20190201.1716";
+ version = "20190411.1842";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-theme-darktooth";
- rev = "507853d70d14201b108432b697fdcd3785fc006e";
- sha256 = "0ly3v8a80b31ffmzvr3h0x4igr1bgcpi92wbxj86r3z1c05s31rp";
+ rev = "5cc7fbfb08d2f1a33b85eac92b6450407b915119";
+ sha256 = "164y8hrdz46gg1b6sfi7gdv7pj54hrin0lcmhxp6gc9x5dg3l354";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f62ac1566ced7332e83253f79078dc30cb7889/recipes/darktooth-theme";
@@ -17392,12 +17621,12 @@
melpaBuild {
pname = "dash";
ename = "dash";
- version = "20190320.706";
+ version = "20190424.1104";
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
- rev = "677c1561142db89cb151f50ce21f24096ca1a328";
- sha256 = "0183iaipz13n5ga80qy49q25h7hj8bs7sz68547hn46zlnnwnbih";
+ rev = "258c324d9840901db83b2cabef3fa75bba57c1ba";
+ sha256 = "150k48llqz2mb66vbznpyj47r6g16amfl7hbg8q46djq8mp7zc2v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash";
@@ -17435,6 +17664,34 @@
license = lib.licenses.free;
};
}) {};
+ dash-docs = callPackage ({ async
+ , cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "dash-docs";
+ ename = "dash-docs";
+ version = "20190516.1002";
+ src = fetchFromGitHub {
+ owner = "gilbertw1";
+ repo = "dash-docs";
+ rev = "111fd9b97001f1ad887b45e5308a14ddd68ce70a";
+ sha256 = "0sckb7z0ylflva212bns7iq9mfnffgjghi0qspsbfwra35zb9xng";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f597ec52f4bf55a748231751b6e51328e8f6f59/recipes/dash-docs";
+ sha256 = "0vms4yr67l95rybvavd34a9gm57j7524swlf1c0rj8fff1wrmhn0";
+ name = "recipe";
+ };
+ packageRequires = [ async cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/dash-docs";
+ license = lib.licenses.free;
+ };
+ }) {};
dash-functional = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -17471,12 +17728,12 @@
melpaBuild {
pname = "dashboard";
ename = "dashboard";
- version = "20190320.25";
+ version = "20190604.939";
src = fetchFromGitHub {
owner = "emacs-dashboard";
repo = "emacs-dashboard";
- rev = "17accfce424a18c4120ad99dfc1d7d93591dbce0";
- sha256 = "0f40xj3wchpj3g9pv15f88vy86d0vllbwr1xli0yfv326lm0j97r";
+ rev = "77e0720c3701cc3f868e701e85b358c0b18dec42";
+ sha256 = "141j6xjms8im6bkikh04nq58brdkb7v4fvaz3csjs7c2r087g4x6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3c6af6ff5d880e6336f8db32b22b64b182794e/recipes/dashboard";
@@ -17768,12 +18025,12 @@
melpaBuild {
pname = "ddskk";
ename = "ddskk";
- version = "20190215.1927";
+ version = "20190423.534";
src = fetchFromGitHub {
owner = "skk-dev";
repo = "ddskk";
- rev = "9a5397829359e2e0f37e26701a70515c0f9fcba8";
- sha256 = "15463cf8vykh2865k52qs25awc4yv91bfk4x9swh7ccrczv0d33q";
+ rev = "3248b05c204d05019210e87ac7730fbbcf72df1d";
+ sha256 = "1j2wqks75ds7i22g18bcm9y36l14fiqw35vsks1n6brdvsv3ys91";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6eccccb79881eaa04af3ed6395cd2ab981d9c894/recipes/ddskk";
@@ -17797,12 +18054,12 @@
melpaBuild {
pname = "deadgrep";
ename = "deadgrep";
- version = "20190314.1507";
+ version = "20190516.1459";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "deadgrep";
- rev = "160e7adb7f043fc42ba6d4d891ad50ef1e063be7";
- sha256 = "1sm92hj4ilq0h82fy5k5nzn7jq56yw2665ikqdcj89k9xldin6xi";
+ rev = "caeb37b8d6ab83f0eba353d6bbb29678190d4419";
+ sha256 = "158fqha8nilwfzmw15lcsq8b099j8wclzq303md0j4mfr2q2gfvs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/93389fae7233b83ea904e17bdaf83f8247cda3d8/recipes/deadgrep";
@@ -18054,12 +18311,12 @@
melpaBuild {
pname = "define-word";
ename = "define-word";
- version = "20190128.759";
+ version = "20190506.825";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "define-word";
- rev = "df1118858fae492cf476a963c1174bfada141c7f";
- sha256 = "0sspnc95y70dcms4551sg93m8998i78lnnrngr59cldr5hwzbr2l";
+ rev = "11bfee628aee082a9a3a2fd5f083cbdb05d5d00a";
+ sha256 = "1yrhrvqiyp4cv6bpvdrkc5zfwflb1jx8kmivjkpv6765pnr11zp8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e318b30d8b2b89981f4b89d78e5a46e77d3de412/recipes/define-word";
@@ -18184,12 +18441,12 @@
melpaBuild {
pname = "demangle-mode";
ename = "demangle-mode";
- version = "20190116.1857";
+ version = "20190527.2006";
src = fetchFromGitHub {
owner = "liblit";
repo = "demangle-mode";
- rev = "b4659ca85c4f02e9043e91d71affb4a8ede87339";
- sha256 = "1rybal9rvnhp4bsdpx57zjida6c9hm44qjvp1fha7fcynjp462iz";
+ rev = "06903d731dfde110e10b979dcc7624ef6dbb5ac8";
+ sha256 = "1j0fszql941kmbd3sf3rjynm4g01cgpkq20lvy9ayj3f2cy46ad4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6ced9f4ffb051a8474d3f72695156416cf2dd8be/recipes/demangle-mode";
@@ -18261,12 +18518,12 @@
melpaBuild {
pname = "desktop-environment";
ename = "desktop-environment";
- version = "20190401.835";
+ version = "20190526.128";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "desktop-environment";
- rev = "564a0f4e8acb747f825c34e0abc6d6690f5d5060";
- sha256 = "0b8gnyhadnwppvwdlgm5fxiiawrwyf9kqxcas5hrjmlnyskdcall";
+ rev = "284c38fcb5b10746255ee4123eaa549e028df0c8";
+ sha256 = "14ija2rrz3zjhjbzxg84j5fq6xph4ah7w9bkqnq37by040cydvhw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dfe988e0dd4a1272ecf7b2fe758ef0c81e2acad2/recipes/desktop-environment";
@@ -18417,12 +18674,12 @@
melpaBuild {
pname = "dhall-mode";
ename = "dhall-mode";
- version = "20190113.1601";
+ version = "20190526.1413";
src = fetchFromGitHub {
owner = "psibi";
repo = "dhall-mode";
- rev = "b59698e9f81ef30cc784729ee4d8c719e6c21bf6";
- sha256 = "1aw6b2gkpclzahyyzxmj2025l8c82w83lz4ixxv5fk63yc9vj96l";
+ rev = "1b71e8e7123647761d8f35916c06b7280b2929ea";
+ sha256 = "12xpzaby75fczxj885ij9wgrc9pn05mg5s7abgfr1irvkq7s467n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c7ab435077b2f47d75ddc0ff10c64ee2b46044e2/recipes/dhall-mode";
@@ -18435,6 +18692,32 @@
license = lib.licenses.free;
};
}) {};
+ dianyou = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "dianyou";
+ ename = "dianyou";
+ version = "20190604.515";
+ src = fetchFromGitHub {
+ owner = "redguardtoo";
+ repo = "dianyou";
+ rev = "1a1fe6da3196f91db7b76b6c552ca4f2629e36bf";
+ sha256 = "1bgyq4zrhzlqmfgv3az4csgsrqidlshwjbx4r9l2rydk3k3gl78n";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/059b003c74acdfdd917ecb6fecb782a0f54d155b/recipes/dianyou";
+ sha256 = "1mz3nvr62gfkhbayw7784c8kn8drbiq9hlqv1g5vd9pdfhxqs8jl";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/dianyou";
+ license = lib.licenses.free;
+ };
+ }) {};
diary-manager = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -18975,12 +19258,12 @@
melpaBuild {
pname = "dired-collapse";
ename = "dired-collapse";
- version = "20180724.944";
+ version = "20190515.510";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
- rev = "3fd347a0823312e966872bd0d26d9a75b2898c9c";
- sha256 = "01q93n4b9js29r2grk53206f7blwp2pjyz8lf98x184f2sdrz9k7";
+ rev = "a9dc5eb34fc96da839f5cbd70eb096758f72b3fe";
+ sha256 = "09zv5k9na72r0gsh67mxg8ynrijl4yy53s9w9lymbdxysc4s53qs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6aab23df1451682ff18d9ad02c35cb7ec612bc38/recipes/dired-collapse";
@@ -19156,12 +19439,12 @@
melpaBuild {
pname = "dired-hacks-utils";
ename = "dired-hacks-utils";
- version = "20160527.1436";
+ version = "20190522.250";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
- rev = "9bb7100d80b96bdfa2154c2b2f509d5b9f6cd7cd";
- sha256 = "1pxvfrkxr4x0vbp313lhbwhrqhsv8kj3b8sbx89sym8f8fdn33js";
+ rev = "9523083f57c8278e3f52ca63b965249123139cd1";
+ sha256 = "1hqk6nipxg0pr0ksgc0rv0s99p5fllqsnfv88zv53g7mqyapx3wd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-hacks-utils";
@@ -19391,12 +19674,12 @@
melpaBuild {
pname = "dired-rainbow";
ename = "dired-rainbow";
- version = "20171202.1448";
+ version = "20190522.250";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
- rev = "edea7534b36297211fe1c0e493220a5cc1bdec93";
- sha256 = "1g05r0krgyyj91digvd07vn6qi9m8yigj6w97bg8zgcsrxhlmc07";
+ rev = "9523083f57c8278e3f52ca63b965249123139cd1";
+ sha256 = "1hqk6nipxg0pr0ksgc0rv0s99p5fllqsnfv88zv53g7mqyapx3wd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-rainbow";
@@ -19494,11 +19777,11 @@
melpaBuild {
pname = "dired-rmjunk";
ename = "dired-rmjunk";
- version = "20190209.1633";
+ version = "20190526.1329";
src = fetchgit {
url = "https://git.sr.ht/~jakob/dired-rmjunk";
- rev = "5d94726b4e427bb21dcc6f043bc3fcfc98b27b7a";
- sha256 = "0imxvaafxpndb3m07wd74xjn093hbib2g38kmrwxj26xkgzw60nc";
+ rev = "6a9fa6a35498e53e8c57282e3b08dedc896d880d";
+ sha256 = "0kpkd7qasrb303d0b01d62r82prhrmaasxqa14nf5lh01c213nr4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/75d501ae9b64d9aa083f43358881a467a7cd2a04/recipes/dired-rmjunk";
@@ -19521,12 +19804,12 @@
melpaBuild {
pname = "dired-rsync";
ename = "dired-rsync";
- version = "20190301.540";
+ version = "20190508.905";
src = fetchFromGitHub {
owner = "stsquad";
repo = "dired-rsync";
- rev = "ff229a32008438a2bfce7ef6c23e8e0d7a5f0c74";
- sha256 = "0wlb27d7isclp5j2cmk31mdix6wx1cavjfnkk5306iwrbpirpv96";
+ rev = "d7eb558c4efa73d9e1f50709dbd2374041c0f1a9";
+ sha256 = "074xy2wipdn2lvm7kxyf7rpsgp7hc62f7h1n77am7p4i7j5alw1f";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ce9f41ad832cef527dde97f829a8b8339e6ac48b/recipes/dired-rsync";
@@ -19548,12 +19831,12 @@
melpaBuild {
pname = "dired-sidebar";
ename = "dired-sidebar";
- version = "20190319.1811";
+ version = "20190515.1859";
src = fetchFromGitHub {
owner = "jojojames";
repo = "dired-sidebar";
- rev = "c895f43e2ee77042f2f9596c4cde8f5f224b8403";
- sha256 = "1wrlvlrv7lh71m6jambbpcxdg0416h1w5d5y673igkp0ri87n2q8";
+ rev = "2c742326a6b7a76e36666586809aaf5efa150b3f";
+ sha256 = "0s2d8lirv8s9az8a7g97yzg7na2n1340a8vg6zja315d43qljis9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/30e15c8361b01195f198197e704828fbcac0e8d6/recipes/dired-sidebar";
@@ -19625,12 +19908,12 @@
melpaBuild {
pname = "dired-toggle";
ename = "dired-toggle";
- version = "20190402.2302";
+ version = "20190515.1804";
src = fetchFromGitHub {
owner = "fasheng";
repo = "dired-toggle";
- rev = "509bf1f3c6d5e5f9bc29f94d88127e2d82d5c6ed";
- sha256 = "1h91z38bflj1z1zy798a4ngkny2f7gp03xbf222jiyhwc9djgg8q";
+ rev = "5bcdd9f13c0b0149c5125004e93bc2dfd22f3fce";
+ sha256 = "0dghbrx364fihzp5r8ar6vxkavd7mn74qjkijy1wvy34vl0b4911";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/17ae4c5ff42e0c48e53d93c88853f649f59034e6/recipes/dired-toggle";
@@ -19724,24 +20007,23 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild
- , with-editor }:
+ , melpaBuild }:
melpaBuild {
pname = "direnv";
ename = "direnv";
- version = "20190319.718";
+ version = "20190511.1321";
src = fetchFromGitHub {
owner = "wbolster";
repo = "emacs-direnv";
- rev = "8ad3672c56d65b1eacc012cc51a36ed544b4b160";
- sha256 = "02blhinkkfh3iai6j1k5swplf5mkwijy3p7wy38rnd1gnyj2z4la";
+ rev = "468f2fb20d825dd7134e4efbaff3666917cd4ec3";
+ sha256 = "005ibyzsx1fdyrl5iyhqpb1bg83mphzahq7zvw58x00syyqi2z49";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5419809ee62b920463e359c8e1314cd0763657c1/recipes/direnv";
sha256 = "0zzmi5m6fh42kyf8dyjrjyrl03pkbipnh4mnssrhp83ljczxkyhd";
name = "recipe";
};
- packageRequires = [ dash emacs with-editor ];
+ packageRequires = [ dash emacs ];
meta = {
homepage = "https://melpa.org/#/direnv";
license = lib.licenses.free;
@@ -20705,12 +20987,12 @@
melpaBuild {
pname = "docker";
ename = "docker";
- version = "20190407.218";
+ version = "20190428.251";
src = fetchFromGitHub {
owner = "Silex";
repo = "docker.el";
- rev = "e127a157f8d0d9ffd465075ecf6558f36d2d3b24";
- sha256 = "1g8r1faqp0z0vqp9qrl8m84pa0v2ddvc91klphdkfmldwv7rfipw";
+ rev = "dbd89c1cd05f9ec6f1921f8bc85d9411a80412c2";
+ sha256 = "1d5x04l4129wjjlzbfmjgw9w6gih28zv8c3q79hihnkpy81xhrnh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker";
@@ -20759,6 +21041,31 @@
license = lib.licenses.free;
};
}) {};
+ docker-cli = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "docker-cli";
+ ename = "docker-cli";
+ version = "20190524.924";
+ src = fetchFromGitHub {
+ owner = "bosko";
+ repo = "docker-cli";
+ rev = "328429219574555c5fb831a421b4b5d9a2338561";
+ sha256 = "15jsp1jsb13qv394js9pd6407ya7dgqk7blzbnyf9i9abyyr0v67";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5664de22600c428b7931085985e6fe779e8876b2/recipes/docker-cli";
+ sha256 = "1pyrnxa9iwzp0a810250xy191xcbaq68c76fc5plh70c37gzribp";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/docker-cli";
+ license = lib.licenses.free;
+ };
+ }) {};
docker-compose-mode = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -20823,12 +21130,12 @@
melpaBuild {
pname = "dockerfile-mode";
ename = "dockerfile-mode";
- version = "20181104.1000";
+ version = "20190505.1107";
src = fetchFromGitHub {
owner = "spotify";
repo = "dockerfile-mode";
- rev = "7223d92718f78fa3ab15667cdb2ed90cfeb579e7";
- sha256 = "0hmipgl4rk6aih11i8mnspwdijjiwk2y0wns6lzs8bgkvy3c064r";
+ rev = "ed73e82dcc636dad00d1a8c3b32a49136d25ee60";
+ sha256 = "0lri2rnx4lr23vqfphkpq39cd4xfgzkvz1xsz7ccdvl4qj0k7fdl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1406f5a24115d29e3b140c360a51b977a369e4f9/recipes/dockerfile-mode";
@@ -20972,7 +21279,6 @@
}) {};
doom-modeline = callPackage ({ all-the-icons
, dash
- , eldoc-eval
, emacs
, fetchFromGitHub
, fetchurl
@@ -20982,19 +21288,19 @@
melpaBuild {
pname = "doom-modeline";
ename = "doom-modeline";
- version = "20190406.12";
+ version = "20190606.228";
src = fetchFromGitHub {
owner = "seagle0128";
repo = "doom-modeline";
- rev = "c5b5a4d2d24b67239993c398e5631e54908fe815";
- sha256 = "0jfh10vnxaz93569yb11zqirj12487ly1gxxrr807583pn24b6n0";
+ rev = "94ddb2f68bff53cebdb3a001bde2cdc9975eca33";
+ sha256 = "1cv2420qpci4pfiskb7gg5s3gnacwzbpi3dg98wb647yv7jkbgj8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f610757f85fb01bd9b1dd212ddbea8f34f3ecd/recipes/doom-modeline";
sha256 = "0pscrhhgk4wpz1f2r94ficgan4f9blbhqzvav1wjahwp7fn5m29j";
name = "recipe";
};
- packageRequires = [ all-the-icons dash eldoc-eval emacs shrink-path ];
+ packageRequires = [ all-the-icons dash emacs shrink-path ];
meta = {
homepage = "https://melpa.org/#/doom-modeline";
license = lib.licenses.free;
@@ -21010,12 +21316,12 @@
melpaBuild {
pname = "doom-themes";
ename = "doom-themes";
- version = "20190313.1520";
+ version = "20190520.2119";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-doom-themes";
- rev = "cbac92578aba8eff8edd18b3e1ea72c295e3631e";
- sha256 = "0v0002smmwjszl94950wmggs0ss9kfigzrhfvayhwcqw0m5h531c";
+ rev = "55c49c8fd6152ebb748e75197c064b6ae7db1a57";
+ sha256 = "0pw47is23nvh72bvmh6c3wip8xjrjvjlal9rk39klkf50x52x3qh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c5084bc2c3fe378af6ff39d65e40649c6359b7b5/recipes/doom-themes";
@@ -21087,12 +21393,12 @@
melpaBuild {
pname = "dotnet";
ename = "dotnet";
- version = "20181117.731";
+ version = "20190415.537";
src = fetchFromGitHub {
owner = "julienXX";
repo = "dotnet.el";
- rev = "70ed170caeeecba5fddbd82b0d6aec967b6c6ee4";
- sha256 = "1hdghrcyic1jng1k08fsq9fscyqx6s3rmsh9k21b91dfaxyaqj6b";
+ rev = "932d776ed739d20d57dbd6ba49f61d1b450571fc";
+ sha256 = "1h7y9vz64bv4slz9mpd7cjyyaxgqk92jn11y5ycfyncq70wyd3j4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6ef473594ec57a747ad7d9d57d7287bcacf4b446/recipes/dotnet";
@@ -21552,12 +21858,12 @@
melpaBuild {
pname = "dtk";
ename = "dtk";
- version = "20181213.946";
+ version = "20190531.2126";
src = fetchFromGitHub {
owner = "dtk01";
repo = "dtk";
- rev = "7c278b81ffdced72d160e302356ac29fe592dc10";
- sha256 = "13p53byz2fbzyam2p8v4i8c43ffsawacjdjgsris8nrqhgmi0vp6";
+ rev = "dd1bda6b63a1679b60fee108cf7b7de7290be986";
+ sha256 = "0gfc9sw6fbrwd9yrpg7s5p0wlbnf89klry92g7dq50an035w75gn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/39333468fb6e9493deb86511f0032610a412ec8a/recipes/dtk";
@@ -21759,12 +22065,12 @@
melpaBuild {
pname = "dune";
ename = "dune";
- version = "20190327.120";
+ version = "20190529.2005";
src = fetchFromGitHub {
owner = "ocaml";
repo = "dune";
- rev = "23f6db7f970293a992006025fcaea018e6485546";
- sha256 = "1nzq3rrkz10gmvppdhwvhgf8nh1x912xizwn6nlj7qffin588r16";
+ rev = "060b6acabba7bf0713912afb28e4cdb0461c2199";
+ sha256 = "1mw8jspqf4wxawnshkbbqpnxzzdz576wl6mgnzbh6ddxr9pk2z7w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06648d1d37767cbdc7588d7a8f709d679d478a3b/recipes/dune";
@@ -21837,11 +22143,11 @@
melpaBuild {
pname = "dyalog-mode";
ename = "dyalog-mode";
- version = "20190305.137";
+ version = "20190416.701";
src = fetchhg {
url = "https://bitbucket.com/harsman/dyalog-mode";
- rev = "6f2a9d8f86be";
- sha256 = "1hgn86mgi0xaa3s85f5kn7crdhirghfq62ri3wn0ywkg6jc0bln6";
+ rev = "abe3de955fd6";
+ sha256 = "06csyjlxfjbhwhiin6ampxsxd6zhkkqxmv9nmmf8ryjlr99prs0n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/dyalog-mode";
@@ -21965,12 +22271,12 @@
melpaBuild {
pname = "e2ansi";
ename = "e2ansi";
- version = "20180403.1215";
+ version = "20190517.1202";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "e2ansi";
- rev = "f886e687d50ff58063a92d40623f2400fa913af0";
- sha256 = "0wg16hdmhbhll0ffp2hrqmr12ddai2s6gql52q6pz9k3lw6v0d5m";
+ rev = "6e1bb4e4e27885d1786db08b091cfa13b184fb54";
+ sha256 = "1rbbwz8a6gqyxkkh5fapzlbnny816yzqj4170fzrswhib610mcvz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e655a3fdfae80ea120cdb2ce84dd4fd36f9a71e/recipes/e2ansi";
@@ -22207,12 +22513,12 @@
melpaBuild {
pname = "eacl";
ename = "eacl";
- version = "20190206.1725";
+ version = "20190518.2320";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "eacl";
- rev = "fe0091e62927e43e6ae2017e5170bc9c2272164b";
- sha256 = "00zlb0lp16crqgp87fnmadphqrx1wc3lndcam4f3apcnxp1dybbg";
+ rev = "1a32676165c0e63dc85470272efaccd5f497870a";
+ sha256 = "0wp0sk10icpjmvzpb7dk2bf633lk4lbl7m09394lhxisl3zqq6cs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8223bec7eed97f0bad300af9caa4c8207322d39a/recipes/eacl";
@@ -22280,23 +22586,24 @@
, fetchurl
, lib
, melpaBuild
- , popup }:
+ , popup
+ , request }:
melpaBuild {
pname = "easy-hugo";
ename = "easy-hugo";
- version = "20181202.31";
+ version = "20190505.1813";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-hugo";
- rev = "e7b6c75a7e46290d9d0cdac9ec56fbf35a6b9c98";
- sha256 = "1xhyky1593qxq7kfbv2ighx957w5pizkki0q77nrvjxlwbqghgz2";
+ rev = "c80b972faa2c3addc472fe6412ca28dc5583b1d6";
+ sha256 = "08lhs0nhd19irssq4w028wyiaf5d2a7pqd1b3hp7rgza411lvwji";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo";
sha256 = "1m7iw6njxxsk82agyqay277iql578b3wz6z9wjs8ls30ps8s2b8g";
name = "recipe";
};
- packageRequires = [ emacs popup ];
+ packageRequires = [ emacs popup request ];
meta = {
homepage = "https://melpa.org/#/easy-hugo";
license = lib.licenses.free;
@@ -22306,23 +22613,24 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild }:
+ , melpaBuild
+ , request }:
melpaBuild {
pname = "easy-jekyll";
ename = "easy-jekyll";
- version = "20181202.145";
+ version = "20190424.1529";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-jekyll";
- rev = "5ee52c0bb01336a03a8f07e072841caf13f86c0a";
- sha256 = "1xibnw3jmmwrc1z7hnifjzhq4mn2834lk7f22x7rwh857iamlply";
+ rev = "6ce93c386ab32f08e23590d71489d8a1bd5a29c5";
+ sha256 = "0vf0966apf815j85nlbj74lqk874jwynfwpn1gnc0krkjgprxkjw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll";
sha256 = "16jj70fr23z5qsaijv4d4xfiiypny2cama8rsaci9fk9haq19lxv";
name = "recipe";
};
- packageRequires = [ emacs ];
+ packageRequires = [ emacs request ];
meta = {
homepage = "https://melpa.org/#/easy-jekyll";
license = lib.licenses.free;
@@ -22471,12 +22779,12 @@
melpaBuild {
pname = "ebib";
ename = "ebib";
- version = "20190404.546";
+ version = "20190606.109";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "ebib";
- rev = "6c1200a7e53ca192b3765f81006b586c557ab993";
- sha256 = "1nbgjhd7whcr96szzjddynvyvm70qdrc92q82m8nkz9z2v514kz1";
+ rev = "960862f2a3058f9ca93850a148410d67e3b33ebb";
+ sha256 = "089wjdam5mpqyndry0fpnklrs9hya1rph7imma550irkisykma1w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib";
@@ -23062,12 +23370,12 @@
melpaBuild {
pname = "editorconfig";
ename = "editorconfig";
- version = "20190405.705";
+ version = "20190603.424";
src = fetchFromGitHub {
owner = "editorconfig";
repo = "editorconfig-emacs";
- rev = "df102f4eee98c541fd855cd7acc82aba206e3222";
- sha256 = "0wlna9d22qn6ly1in0w8pd9np7p65f2hglpimm7n8lr3485q2sdd";
+ rev = "efc1ff4b1c3422d6e231b1c01138becab4b9eded";
+ sha256 = "122h57ccx0dba45a019cmp3797b85s5a60rq6w8ggin3yf623l0m";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig";
@@ -23167,12 +23475,12 @@
melpaBuild {
pname = "editorconfig-generate";
ename = "editorconfig-generate";
- version = "20181115.2235";
+ version = "20190512.2133";
src = fetchFromGitHub {
owner = "10sr";
repo = "editorconfig-generate-el";
- rev = "2921b53700dedf16b57d684439add187663954cd";
- sha256 = "0dqmq0hq603r2qn4wjdzlmsv4csci8d36i259jmwf71v8m1j4rc7";
+ rev = "47a31f928f46d2a0188db8e2cffa5d6354a81573";
+ sha256 = "01bv064rzxjpqvcs0x62qfqn51js51wmkbg04v28pvmwlmnigkg0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dc1cfe5ce6bc3d247c5b7730ac6cb2d6c6198a0c/recipes/editorconfig-generate";
@@ -23366,12 +23674,12 @@
melpaBuild {
pname = "eglot";
ename = "eglot";
- version = "20190213.124";
+ version = "20190512.347";
src = fetchFromGitHub {
owner = "joaotavora";
repo = "eglot";
- rev = "7d6e3cf5d7ae098aa6c8572343c8bc9b8453aace";
- sha256 = "1q616yp9zi9a76sjb9f901r4cck40p8f5rgxmdwsavagl5w8d8cz";
+ rev = "5f629ebfb680f43849ca894c7166a2b54ff5ba50";
+ sha256 = "0jja8c2f6scy4bb3p79bn3sjkzkz10mmb8aivg9x1ynki96rc2ja";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6c644530eca56f93d94fac2c9d7663c35c2b8c01/recipes/eglot";
@@ -23423,11 +23731,11 @@
melpaBuild {
pname = "eide";
ename = "eide";
- version = "20190108.1316";
+ version = "20190501.1422";
src = fetchgit {
url = "https://framagit.org/eide/eide.git";
- rev = "3b6d48df2cc1731812b5bd72d11c205dee17b930";
- sha256 = "1jl0fyiqiqqd9wf2cdk8l6fbnnbq72np6d2n6kya0gk4afj5kr6g";
+ rev = "0554252de694d01210e40cf071f212b6ca45e88e";
+ sha256 = "1ac8408m0rqyhda22b1c6jcn62mrmpvcn5d3nr2miiv7akvykvl9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a42244392719c620b47bc43a7a8501dab4b6f74e/recipes/eide";
@@ -23466,9 +23774,9 @@
};
}) {};
ein = callPackage ({ auto-complete
- , cl-generic
, dash
, deferred
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -23482,12 +23790,12 @@
melpaBuild {
pname = "ein";
ename = "ein";
- version = "20190404.1625";
+ version = "20190605.1302";
src = fetchFromGitHub {
owner = "millejoh";
repo = "emacs-ipython-notebook";
- rev = "5accc13b518b0db584b8a1a0b782dbc3171f4ec6";
- sha256 = "02m062f2nj3giccbfq7cl3i4qm19rbcyzan42q3w5hqm4y0zy8zc";
+ rev = "2207014453a739ecffda1075ea101fa21adc3a95";
+ sha256 = "07ybpylcbqy12k0xm6xl96mi36p9jhdayds2fzcz90nnd19l1zzb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/215e163755fe391ce1f049622e7b9bf9a8aea95a/recipes/ein";
@@ -23496,9 +23804,9 @@
};
packageRequires = [
auto-complete
- cl-generic
dash
deferred
+ emacs
markdown-mode
polymode
request
@@ -23575,12 +23883,12 @@
melpaBuild {
pname = "ejc-sql";
ename = "ejc-sql";
- version = "20190404.411";
+ version = "20190604.944";
src = fetchFromGitHub {
owner = "kostafey";
repo = "ejc-sql";
- rev = "8afdb7e8a28f916149b53345816e50667d4441b8";
- sha256 = "1imc324b862d92yl7n9bqr92k1d1d7pnls73xy4q8lfrllik0ja2";
+ rev = "0d3e0da114b623e537fc076dbd08667f6653bca0";
+ sha256 = "1bqirwcjbnc5cq2y4c1s0znc43kpfz7vyqqc7m6s2dgmfv4g52yh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e01655679087504db1206b22435ba8eb7050aa23/recipes/ejc-sql";
@@ -23761,12 +24069,12 @@
melpaBuild {
pname = "el-patch";
ename = "el-patch";
- version = "20190127.1455";
+ version = "20190410.931";
src = fetchFromGitHub {
owner = "raxod502";
repo = "el-patch";
- rev = "879094151fa1b4d96435b92c53751b0b761ba46c";
- sha256 = "1jn1mp0zhiyqgx6c4ywkq098c9k1pfzq128f2aq7a5vin4558s7p";
+ rev = "178111f98564551e18948b1f0dc4c539dbda5342";
+ sha256 = "0nsfax7rbg740q1mw0lrrk8i385pyxmi41lznish0b6abks385ca";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch";
@@ -23967,12 +24275,12 @@
melpaBuild {
pname = "el2org";
ename = "el2org";
- version = "20190313.651";
+ version = "20190504.414";
src = fetchFromGitHub {
owner = "tumashu";
repo = "el2org";
- rev = "d9792a9a861d4d43b0d3aefb2ec9268a6fbc83bc";
- sha256 = "169fgx42n2s4gr6mq3zffxgdvkawvbyd6xja3djmp0yi8k85jazl";
+ rev = "fbb2c5bff78564111ff1826976101555314bfc53";
+ sha256 = "17d85fdckbzj551j98j0hrhdj0ag8ba2kpk2ix8fmvdnssxdnvm0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/el2org";
@@ -24051,12 +24359,12 @@
melpaBuild {
pname = "elcord";
ename = "elcord";
- version = "20190321.1145";
+ version = "20190531.1511";
src = fetchFromGitHub {
owner = "Mstrodl";
repo = "elcord";
- rev = "17d3e5b95e68d1b6c396ba0decd94a85226f6504";
- sha256 = "1rhz34bwmjvi98yl9fq4did2pj62v3zpdyr1ryb9yfaz6b59baga";
+ rev = "0f311c2bcfd65721fe8c0ebec9da344f217d4061";
+ sha256 = "06yk9912xkz8sxzph57mzf45934qjcp29x4f844lrhrpmmbmb8xg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cf2c52366a8f60b68a33a40ea92cc96e7f0933d2/recipes/elcord";
@@ -24105,12 +24413,12 @@
melpaBuild {
pname = "eldoc-box";
ename = "eldoc-box";
- version = "20190305.1306";
+ version = "20190529.131";
src = fetchFromGitHub {
owner = "casouri";
repo = "eldoc-box";
- rev = "0d671026b923cef0b2e9f6e9339fa8b1de59543f";
- sha256 = "02pqfdx8jxy5sn4iqamiqmkdllfdz56s1x9hh9qc6psxpjrb38m3";
+ rev = "c97fe860fa2a5b957a25219172ab596b2f4fc95b";
+ sha256 = "03asvv66i9jwmj5jkspb16d04q8rgkmrf1x9zbpiq12vb0wfbyf0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aac2e64f9e0d06b95bdf0dece214263f75470ea8/recipes/eldoc-box";
@@ -24131,12 +24439,12 @@
melpaBuild {
pname = "eldoc-cmake";
ename = "eldoc-cmake";
- version = "20190323.548";
+ version = "20190419.1544";
src = fetchFromGitHub {
owner = "ikirill";
repo = "eldoc-cmake";
- rev = "1347b4bd643e8011094c4036a397b0acc4d879d7";
- sha256 = "0m2shpwh55dl1ymmin638ldwkpi5n62iljszlfi5gjwyshd58db5";
+ rev = "4453c03b5c95ff32842f13db2fc317fb0fe2f79e";
+ sha256 = "01jhfglj1v4p3qmhiri4k05p0dg10k59pj5608hjls6zsmxf2wbg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e19f92097e6003a893907aa46a2df755d2bf0b87/recipes/eldoc-cmake";
@@ -24156,12 +24464,12 @@
melpaBuild {
pname = "eldoc-eval";
ename = "eldoc-eval";
- version = "20190106.1200";
+ version = "20190423.1158";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "eldoc-eval";
- rev = "4a1cf92dc5c4eca7519eb32f61b95e9e9f5755e4";
- sha256 = "1x90yjzlilzfdkslxi5ijdqi0pcldlz2p3m6nk17b8b3mayi7zj7";
+ rev = "a67fe3637378dcb6c5f9e140acc8131f0d2346b3";
+ sha256 = "0504yyzxp1rk0br6f25395n4aa4w8ixf59vqxxb55a7agxplfpjc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/63ba2004d3db4c5a71676dca82ad880328cf6073/recipes/eldoc-eval";
@@ -24338,12 +24646,12 @@
melpaBuild {
pname = "elfeed";
ename = "elfeed";
- version = "20190407.1454";
+ version = "20190514.1025";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elfeed";
- rev = "2f19e61a41fb732704366ca9d62aa9f0f090408a";
- sha256 = "13mmgxi71afl7kvx8gs75smacad69ywivcp7gwjid7bpn6rd2myy";
+ rev = "fd539da2da94ab4794fd69247ce06deca7aa66bf";
+ sha256 = "1awm3n9qyyh0dacrix6rwy0a34llf0ac4v1kysydfh6l3ghbs99k";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed";
@@ -24488,12 +24796,12 @@
melpaBuild {
pname = "elgrep";
ename = "elgrep";
- version = "20181126.59";
+ version = "20190518.839";
src = fetchFromGitHub {
owner = "TobiasZawada";
repo = "elgrep";
- rev = "73679c28737f8d6d34444df46bed5293d4845f82";
- sha256 = "091ghc7grd6znsfxnwg30w9i32818j6arxgnz9fkkwizngw5v9hv";
+ rev = "c2c5858f335ac1d0013dc631e5bc2dc16d9b3198";
+ sha256 = "1rlj9cniwk8fzfn1i4apffrikv08r9c2dmwxhqc6nmrhfjr2rf1k";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0d9ab623b2d634936a79ff6f4b98b31825d44b6d/recipes/elgrep";
@@ -24569,12 +24877,12 @@
melpaBuild {
pname = "elisp-demos";
ename = "elisp-demos";
- version = "20190314.929";
+ version = "20190604.2301";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "elisp-demos";
- rev = "8c3ee9e83f92876606432251569fd4ce62e7e764";
- sha256 = "1z5x0rrn8486k1vm9v0g2wvjv8q7yr2n4jrb94ayp31z547yn0q9";
+ rev = "837769d9ab2075a4e1a45506bc2853a845b431c8";
+ sha256 = "0ir0ixwqb7i7apaspilf6kavgyvhkvcraa8m6wz16h1slg0j3w2l";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e1bd1c7a4576d4874a8c5fc8ab2dbc65f0e5bc8c/recipes/elisp-demos";
@@ -24776,12 +25084,12 @@
melpaBuild {
pname = "elixir-mode";
ename = "elixir-mode";
- version = "20190319.1144";
+ version = "20190421.1855";
src = fetchFromGitHub {
owner = "elixir-editors";
repo = "emacs-elixir";
- rev = "b86aab218d67d041682e50b5c939308638bb0200";
- sha256 = "0226ing29qqvnv9yr3bkyajimqw33ihfzcqj18nq83lfhwggbp19";
+ rev = "694d133e847e9a6db6abd1c19850cec6d867ccce";
+ sha256 = "0fl3i8cxnrn70l68328jyhabgccmqbislkgp4k4ih5yll3plz31n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/elixir-mode";
@@ -25129,12 +25437,12 @@
melpaBuild {
pname = "elpa-mirror";
ename = "elpa-mirror";
- version = "20181012.1956";
+ version = "20190423.1418";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "elpa-mirror";
- rev = "7b881f881a0c8a8de14161cbd3869c2a7591706c";
- sha256 = "1hrj6jkmk5b0q40nnpadn08b4cnals48rvlqrmfshjc7gz06kjcj";
+ rev = "50b92aae0b4cafc38de9767edad726c3c3915ffc";
+ sha256 = "0ryblixg3bv51wagjs67k4hwalfm19vccwqs7q14lwbhv96n99qd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d64ce7042c45f29fb394be25ce415912182bac8b/recipes/elpa-mirror";
@@ -25147,6 +25455,32 @@
license = lib.licenses.free;
};
}) {};
+ elpher = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "elpher";
+ ename = "elpher";
+ version = "20190603.1031";
+ src = fetchFromGitHub {
+ owner = "tgvaughan";
+ repo = "elpher";
+ rev = "343d06a4080ca8fb67eaa3a0508aa7551b93a164";
+ sha256 = "0lbssaaj3fmmppv95gkwf65w5iq6vhqjb28xw854fg8i8maax21d";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df2162816fed4d5da7ee5adafbf547eed8815418/recipes/elpher";
+ sha256 = "1csy26ra6kgm2rnf1s6bj254r18zkaf6y7kb3rrjm1msw3vjvvr2";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/elpher";
+ license = lib.licenses.free;
+ };
+ }) {};
elpy = callPackage ({ company
, emacs
, fetchFromGitHub
@@ -25161,12 +25495,12 @@
melpaBuild {
pname = "elpy";
ename = "elpy";
- version = "20190406.755";
+ version = "20190523.1546";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "elpy";
- rev = "2d4a968e8fe04e6ad099c526349633105a38f608";
- sha256 = "13nbpd79vhfp7k9da59999l49hh0k1m8n9q9mdfrk4irrglzmm89";
+ rev = "ef274bbe1d4709d36951a0e5cc5b81bdb6a8be79";
+ sha256 = "1szqxs28941frkgqll6pa2fs70a4w6abxqhbh7lzb1qr4zi09fs6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy";
@@ -25730,12 +26064,12 @@
melpaBuild {
pname = "emacsql-sqlite";
ename = "emacsql-sqlite";
- version = "20190108.825";
+ version = "20190426.1229";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacsql";
- rev = "60b99760c59afa58dc0241e0468e6fc40b8f199b";
- sha256 = "0l376j85q7fnlz35db22vrz618g2d94j0qa21kl3cna81n8wpr5z";
+ rev = "d5c37d905d133a3887bc582e4a0126671816beaa";
+ sha256 = "1v0ynzvzgy7l2dhiz940i6a71v93jfsn2b7k3lhzdrx5s4a56wi5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3cfa28c7314fa57fa9a3aaaadf9ef83f8ae541a9/recipes/emacsql-sqlite";
@@ -25755,12 +26089,12 @@
melpaBuild {
pname = "emacsshot";
ename = "emacsshot";
- version = "20161018.743";
+ version = "20190527.343";
src = fetchFromGitHub {
owner = "marcowahl";
repo = "emacsshot";
- rev = "752244330ff829d8dbea7fcf7065f5d4708038a6";
- sha256 = "15y0vv8vm30yp3mn0x7lqq3vd7wb2qny424jx5f4m74hy2xi3svr";
+ rev = "64b7152e84a72b2ebcfd436a974135cf6978ef47";
+ sha256 = "1m80804d2ynwdjgxrpbi4y3p0r16a3ihnga8pxhlaxxqnxy7m8b8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/efdd85accc6053f92efcbfdb7ddc37b23a07a3b0/recipes/emacsshot";
@@ -26019,11 +26353,11 @@
melpaBuild {
pname = "emms";
ename = "emms";
- version = "20190221.847";
+ version = "20190529.1011";
src = fetchgit {
url = "https://git.savannah.gnu.org/git/emms.git";
- rev = "6013464eb7295fcd749b3146f758fc9295fbe11a";
- sha256 = "0g7a31yn9p0iqr2im0l9d8fch58ffk5m7g3kfnn377pbyfh4hr11";
+ rev = "f7e27094f09432b40ced77c7163cd29f338b7db6";
+ sha256 = "009lba33xk86jpngmx63mgv9im28n1yfbjqzwd60f39hhvbl6mrd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/emms";
@@ -26365,12 +26699,12 @@
melpaBuild {
pname = "emojify";
ename = "emojify";
- version = "20190401.2053";
+ version = "20190521.124";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "emacs-emojify";
- rev = "4954a4f2cffe5c459727bee30cd221c59eacd839";
- sha256 = "1y7swk97qllnk0lc3x8ya9lrd7d74ximjaa5pnj695knrf1ib0jn";
+ rev = "302d16e9bac72faf94984e0c48ecd0e4b8d66738";
+ sha256 = "1fqnj5x7ivjkm5y927dqqnm85q5hzczlb0hrfpjalrhasa6ijsrm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify";
@@ -26451,12 +26785,12 @@
melpaBuild {
pname = "emr";
ename = "emr";
- version = "20180921.1415";
+ version = "20190414.1325";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "emacs-refactor";
- rev = "8856b2ed7e45dd33a5f81e1302a2fba736c64dd6";
- sha256 = "1swsh3ld5vlp3fx9dynri6rphpsn9i7n3amzlbzh36w0jkkjcz0m";
+ rev = "73a7b2ea2db4ee6327e788f7462da9e107e5082f";
+ sha256 = "0habg2llm7k030bz9syf9b0ilgpk8r1svhbdl6957pdgj8zqj4pn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/emr";
@@ -26565,12 +26899,12 @@
melpaBuild {
pname = "enh-ruby-mode";
ename = "enh-ruby-mode";
- version = "20190407.413";
+ version = "20190512.1954";
src = fetchFromGitHub {
owner = "zenspider";
repo = "enhanced-ruby-mode";
- rev = "249c98e1345f71b03260dc4af747be9a7f1a8a07";
- sha256 = "18gq393ply76hxd1k5myavzg5aayhyng89392mrhbshq437491kx";
+ rev = "f334c42986e93c60fba144d732becfcbdb13bb7d";
+ sha256 = "0xfdiajm2blkddxillnvn0mnik2i1q5zwgb5zc60i7p5dg1fj176";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode";
@@ -26820,12 +27154,12 @@
melpaBuild {
pname = "epkg";
ename = "epkg";
- version = "20190314.1713";
+ version = "20190505.345";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "epkg";
- rev = "408d46a9d041b516e9fda0414058a287dfef37fb";
- sha256 = "1csvjirm3w40jzpd1nqlqwv8nx5cscmwpmb2rhijj59fw12jllnc";
+ rev = "1aaa64402bf91575ee81bf240c4c52320f68088d";
+ sha256 = "0ij44yp72y1flcjp2q6yfbrnr4bnzjflgcsksl3djr9nhb73cd5a";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/epkg";
@@ -26873,12 +27207,12 @@
melpaBuild {
pname = "epm";
ename = "epm";
- version = "20161027.34";
+ version = "20190508.2143";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "epm";
- rev = "ab3d194fc4d11520d6b9bce4746d7242f3f1606a";
- sha256 = "0a2197dyc4rgssqwi2bgd6cg1g23pirjpvyq9b77n1nl8jghp0sw";
+ rev = "6375ddbf93c5f25647f6ebb25b54045b3c93a5be";
+ sha256 = "1m0l0szrwljzsch4xj9a42nflpqfii68g8clizsjwv323h6xff4n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0/recipes/epm";
@@ -26979,12 +27313,12 @@
melpaBuild {
pname = "equake";
ename = "equake";
- version = "20190403.1840";
+ version = "20190527.2131";
src = fetchFromGitLab {
owner = "emacsomancer";
repo = "equake";
- rev = "997ad912062cbdf8598d6f029319ee046649a26c";
- sha256 = "04xzjsifam29y55wfhw29gviadp0f2pn4di6nnhrypxlir2mg3rz";
+ rev = "a03c7d942caa43d202bdf99a6845bee1d2d189a1";
+ sha256 = "1303nlpzyyy0cka3n546dgk29bxn493fx5hp94qi0rfz5lqnk1q7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2a4a0ec11a9c720d7ed90addcb31d0a9d5594f5b/recipes/equake";
@@ -27499,12 +27833,12 @@
melpaBuild {
pname = "ergoemacs-mode";
ename = "ergoemacs-mode";
- version = "20181127.1330";
+ version = "20190526.2048";
src = fetchFromGitHub {
owner = "ergoemacs";
repo = "ergoemacs-mode";
- rev = "cac7b5628d54fbce1b4e564fdfd36dc6b989c228";
- sha256 = "0aimaq0crkbdpj7y01ydg052i5iqajf295nka099mi1yrbl2ppr3";
+ rev = "7d3656541a00cc04ba4cefa31c0d127adb5a260a";
+ sha256 = "1rw237xiw5nz736l5jdmlsa11l14qvzdac0wqymi80a0rfwqikga";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode";
@@ -27797,12 +28131,12 @@
melpaBuild {
pname = "es-mode";
ename = "es-mode";
- version = "20181004.1517";
+ version = "20190512.516";
src = fetchFromGitHub {
owner = "dakrone";
repo = "es-mode";
- rev = "1b7aca9b4e9fcebf4a67682203035eaf75b692e2";
- sha256 = "16vdy6kknwi1hxgkfrzc6jk9h41l6agyiw6k21j3dcz237ngrkhv";
+ rev = "8de1452e1b9181a4f6778c0aaefc011aef58b25d";
+ sha256 = "0p9k30a1ar9hpw63cxr46afk7l3b7j79jpgrjcpsicd17rhjbcs8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9912193f73c4beae03b295822bf41cb2298756e2/recipes/es-mode";
@@ -28129,6 +28463,33 @@
license = lib.licenses.free;
};
}) {};
+ eshell-toggle = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "eshell-toggle";
+ ename = "eshell-toggle";
+ version = "20190526.752";
+ src = fetchFromGitHub {
+ owner = "4DA";
+ repo = "eshell-toggle";
+ rev = "2eb91974047f5caf8df3bf3af5014be2cc95ddac";
+ sha256 = "1iblhp0jvki2lm1jg1g93r3zvxvpjv3pi0xssivypq3bpy22v6cr";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7a3cf4c5ed3bb0995eac9dcce939b518a0ef987/recipes/eshell-toggle";
+ sha256 = "06cxjh0cqcafb4skw317f8wria9gv77wbwpc62a276s3zrv961qf";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/eshell-toggle";
+ license = lib.licenses.free;
+ };
+ }) {};
eshell-up = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -28401,12 +28762,12 @@
melpaBuild {
pname = "ess";
ename = "ess";
- version = "20190407.721";
+ version = "20190530.747";
src = fetchFromGitHub {
owner = "emacs-ess";
repo = "ESS";
- rev = "1c2a5e9525d4bd66cf54aac087837a2f70d5bfd5";
- sha256 = "11nkgxzykrw7cfcdb8mbrym92mna0y4lfv02fpy3l8zffcs71mcn";
+ rev = "a715cbbd998d645ec377dc99964cd2b0f14fc192";
+ sha256 = "060s331wmdzzvd183jcyzy4frc1jgsiqjz5bpgm8fx4kk42df2ww";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/156a6fa9e6ee16174d215c1dcd524aff847b3bf0/recipes/ess";
@@ -28643,12 +29004,12 @@
melpaBuild {
pname = "ethan-wspace";
ename = "ethan-wspace";
- version = "20170507.1330";
+ version = "20190522.748";
src = fetchFromGitHub {
owner = "glasserc";
repo = "ethan-wspace";
- rev = "14ae43130e019034367cd2b6e2bf9a067955dd33";
- sha256 = "19i8y8ys58mvzmz0ijcdv9nnrs3b85zbgl087d68734vhp73iy78";
+ rev = "0f110fc26b829093c352e8dc9e50ba51a4e483ac";
+ sha256 = "1w26cczq58xyzgmpsks11dnl58kvzk0av2y4bg46cgma4fdg9pb1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9454f3a58e3416fa60d8411b0db19c408935408f/recipes/ethan-wspace";
@@ -29082,12 +29443,12 @@
melpaBuild {
pname = "evil-collection";
ename = "evil-collection";
- version = "20190327.1904";
+ version = "20190605.2304";
src = fetchFromGitHub {
owner = "emacs-evil";
repo = "evil-collection";
- rev = "28bf368cf14b87d1a96c71f8b2d422d7edf4c39b";
- sha256 = "0r6p3pkrhrlbd77dn20n86rxkgpvrj62842s2nnmr9mk5bwd5fap";
+ rev = "218e6e2e222998b2cc84003f6b98f0a82595754b";
+ sha256 = "044q3gabjsxhplhrnwzmkml78vzwc16289zwg0xh713n2b80vdki";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fbc35279115f6fdf1ce7d1ecef3b413c7ca9c4f1/recipes/evil-collection";
@@ -29350,12 +29711,12 @@
melpaBuild {
pname = "evil-expat";
ename = "evil-expat";
- version = "20190111.2140";
+ version = "20190521.14";
src = fetchFromGitHub {
owner = "edkolev";
repo = "evil-expat";
- rev = "4c344ea19b789002d759a202ffbf594730d2c59a";
- sha256 = "16v7fnldxag6l1lsnrnhdjkga9qi78lbdfbb82k6pmv04991mbkr";
+ rev = "f4fcd0aa3edc359adb5c986b5dd9188d220d84e2";
+ sha256 = "0872ix682hkdz0k8pn6sb54rqkx00rz5fxpd5j2snx406yagpaxz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f08f6396e66479eb9510727968c5bb01ac239476/recipes/evil-expat";
@@ -29703,12 +30064,12 @@
melpaBuild {
pname = "evil-lispy";
ename = "evil-lispy";
- version = "20170304.259";
+ version = "20190502.39";
src = fetchFromGitHub {
owner = "sp3ctum";
repo = "evil-lispy";
- rev = "040a7ee130c2403a1d6dac591b94b202bb48e186";
- sha256 = "008jar578yxa70nd69z4ldmknfmm1jar3wx71n3y2gnyghr759k1";
+ rev = "ed317f7fccbdbeea8aa04a91b1b1f48a0e2ddc4e";
+ sha256 = "0izgd9zwfwykmznv6wjrq9czmjqc1hkw41szrjmrcxy5kbz1p5c0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/377d43f3717b8e17c3adce886aaf3e579383ec64/recipes/evil-lispy";
@@ -30136,12 +30497,12 @@
melpaBuild {
pname = "evil-rails";
ename = "evil-rails";
- version = "20160621.1558";
+ version = "20190512.817";
src = fetchFromGitHub {
owner = "antono";
repo = "evil-rails";
- rev = "8cbf97719fdef17e98c593966d4753962e350bac";
- sha256 = "18m73hr0nqrf60vnrhbd4jjrfz8g6flzkdjixd8rzpxpmfx8vsv9";
+ rev = "b0f1c5de6720714febeb76c4b569b71bb891938c";
+ sha256 = "0mypsbf0mg2b4746r9b9ybj51qkrlxz48lf9g53kzbk3wdf6p5vi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ff526fe800b0535067431f1ae78c4a4b5594b23d/recipes/evil-rails";
@@ -30850,6 +31211,87 @@
license = lib.licenses.free;
};
}) {};
+ ewal = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ewal";
+ ename = "ewal";
+ version = "20190517.2233";
+ src = fetchFromGitLab {
+ owner = "jjzmajic";
+ repo = "ewal";
+ rev = "31583d76bbc79bdf856b39510a175b52551b862f";
+ sha256 = "0by4cihbrcvp09gan15xs57pvra411n19b8gilqqh1i5fx9c3zq8";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7f9833a1dda00e12bcf45c7194ebc38e26168b/recipes/ewal";
+ sha256 = "19z370w1lk8l26knj6ry3znxcimvkbwd8pm4cg16r9ib5c78zxiq";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ewal";
+ license = lib.licenses.free;
+ };
+ }) {};
+ ewal-evil-cursors = callPackage ({ emacs
+ , ewal
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ewal-evil-cursors";
+ ename = "ewal-evil-cursors";
+ version = "20190604.220";
+ src = fetchFromGitLab {
+ owner = "jjzmajic";
+ repo = "ewal";
+ rev = "81f0da12d0b2d2c27bce635590faa7d0492557ca";
+ sha256 = "1d20hvl2zf9r1hjk1sryb8ax0mnl935idqcfwxr75wzm6kgzly30";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7f9833a1dda00e12bcf45c7194ebc38e26168b/recipes/ewal-evil-cursors";
+ sha256 = "177f5m1a3cvgjkgqz61w8gz3q272sk2cafq2z29rk88gcfbm2iqc";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ewal ];
+ meta = {
+ homepage = "https://melpa.org/#/ewal-evil-cursors";
+ license = lib.licenses.free;
+ };
+ }) {};
+ ewal-spacemacs-themes = callPackage ({ emacs
+ , ewal
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild
+ , spacemacs-theme }:
+ melpaBuild {
+ pname = "ewal-spacemacs-themes";
+ ename = "ewal-spacemacs-themes";
+ version = "20190517.2249";
+ src = fetchFromGitLab {
+ owner = "jjzmajic";
+ repo = "ewal";
+ rev = "0897907340d160212e295665eaf18866b9e2c113";
+ sha256 = "0h8g7mklfz9hgcwa7r72qzyw4il7dk36q87nynyx1nq9wafj14qy";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5aebe80668479c02a694fef153cea0e9f9ca7eb0/recipes/ewal-spacemacs-themes";
+ sha256 = "0a0xpjlw3yfqfn2wcyqzpdisyr5pm1x35k8rpcjhwn5lhh7njlfc";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ewal spacemacs-theme ];
+ meta = {
+ homepage = "https://melpa.org/#/ewal-spacemacs-themes";
+ license = lib.licenses.free;
+ };
+ }) {};
ewmctrl = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -30934,12 +31376,12 @@
melpaBuild {
pname = "exec-path-from-shell";
ename = "exec-path-from-shell";
- version = "20190105.1907";
+ version = "20190426.1527";
src = fetchFromGitHub {
owner = "purcell";
repo = "exec-path-from-shell";
- rev = "76cd6e3fa8a7dac937af7e40507843dfae4f9184";
- sha256 = "1ga8bpxngd3ph2hdiik92c612ki71qxw818i6rgx6f6a5r0sbf3p";
+ rev = "3cfedb8791397ed50ee66bc0a7cbee5b9d78245c";
+ sha256 = "1mrwsc12j44q9cv9sjz3hhr7pd4z4vj30ha320zlh7pcacs973js";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/exec-path-from-shell";
@@ -30960,11 +31402,11 @@
melpaBuild {
pname = "exiftool";
ename = "exiftool";
- version = "20190203.1206";
+ version = "20190520.406";
src = fetchgit {
url = "https://git.systemreboot.net/exiftool.el/";
- rev = "4131fa38160dabd5d7143aad8aca5db575749292";
- sha256 = "0lbsa8v39aih8mcvvdm0jang05gm5br5g2fay3lccf73c9aimrfh";
+ rev = "e043df1bcef40cd5934a74c210e1e35d5eb0e5a6";
+ sha256 = "0am4g25mlmm1iqcm2kxzskrzhrm1f09cdwcqmvk4lidid5xcb6xc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4835a76909d020781021e747fbc341111a94dbfa/recipes/exiftool";
@@ -31035,12 +31477,12 @@
melpaBuild {
pname = "expand-region";
ename = "expand-region";
- version = "20190327.528";
+ version = "20190415.2238";
src = fetchFromGitHub {
owner = "magnars";
repo = "expand-region.el";
- rev = "0ba6f41a7921ae24e8d3a2345dd5492052fe93f4";
- sha256 = "0j92jj0ydqll3c4p14gwn6z0c3l44ali2yr3cnz3a96g00fd36y4";
+ rev = "1c31447730443d98f90f65dfcb752f347d46ad1b";
+ sha256 = "07jm8hm3zsm556l10gw83dw0mpm2d9d8x5blqbdmmp5zsf0y5kqb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/expand-region";
@@ -31193,12 +31635,12 @@
melpaBuild {
pname = "exunit";
ename = "exunit";
- version = "20190215.1940";
+ version = "20190510.2314";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "exunit.el";
- rev = "1b7763bc4822f3292a6b9b368693b0c271052eb8";
- sha256 = "1g6w7gchw34acqwigsjhf93hx83w11wr6a2yv6p8ncw9r3vgbnh2";
+ rev = "7aa008cb54e7935183a19d6b81d218de7ec38ca4";
+ sha256 = "0zp0sdnrb5mm6k1z6zqs7s042f6n24sg1y0wx6bw35za6r5f36cr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/94e4fd4cf58b280d08d22aff4dd9c47201a29e72/recipes/exunit";
@@ -31447,12 +31889,12 @@
melpaBuild {
pname = "eziam-theme";
ename = "eziam-theme";
- version = "20180414.329";
+ version = "20190425.351";
src = fetchFromGitHub {
owner = "thblt";
repo = "eziam-theme-emacs";
- rev = "96595833110cd64c391e0ccd5230782a8f0a4e08";
- sha256 = "0nvwgxlrbfhchb7z2qnw1lj66xpzn2b6yb6mhx0k31xdfr173wch";
+ rev = "4402f58f6d619571c0960b2be5ce5b61962c1a67";
+ sha256 = "0a7jk5k8fhj9klsphyw22khrwb5ns3w85rbzyrdrshhcaqcr88j3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0411583bd4fdbe425eb07de98851136fa1eeb0/recipes/eziam-theme";
@@ -31552,12 +31994,12 @@
melpaBuild {
pname = "face-explorer";
ename = "face-explorer";
- version = "20170710.1201";
+ version = "20190517.1157";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "face-explorer";
- rev = "13bd4553bc4b09215a04d0267be1cb4ed834775c";
- sha256 = "1zbm92imfbh1sm7j64vc1ig5yq6rdd8izkh80mci5k6nf1p3byk7";
+ rev = "ad1300e13e5643e4c246cabfd91f833d39113052";
+ sha256 = "0nq36h6kwyi2sv1fklm42spfkllm6jlz0alh2qlpgy4ixq5sp2pv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2370fdf6421dc518337e04bd2453a5f74e2df2b2/recipes/face-explorer";
@@ -31628,12 +32070,12 @@
melpaBuild {
pname = "faff-theme";
ename = "faff-theme";
- version = "20190115.1307";
+ version = "20190506.813";
src = fetchFromGitHub {
owner = "WJCFerguson";
repo = "emacs-faff-theme";
- rev = "cf76f8d700ae4e7c58b2ebb4bbe3b10a21a5658b";
- sha256 = "1jap3fx29l542p4yjaimy1v0d2rnd5bprnz8clxhm80jn6km8v9d";
+ rev = "de12f6a11711955fbbcdf7c042459aa2206f8deb";
+ sha256 = "193d6s759kmkwfmwc9367grkgf46gm9ppczppcrk2h3alzr1hba6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme";
@@ -32320,12 +32762,12 @@
melpaBuild {
pname = "find-file-in-project";
ename = "find-file-in-project";
- version = "20190330.1830";
+ version = "20190602.342";
src = fetchFromGitHub {
owner = "technomancy";
repo = "find-file-in-project";
- rev = "33fc401eeda51c11dfecd78d961538aaef23761b";
- sha256 = "1vrw2c88lanb5r8gapf62blccb98s864b5bn3fc5hj27ybd441vd";
+ rev = "df9a69852c183bbcd5195b7802b4e527e97f4895";
+ sha256 = "1hlg5lkn1a81q9gqpv4894lyg45y9mc1ajiy1hlyvwxc9czffkmx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project";
@@ -32627,12 +33069,12 @@
melpaBuild {
pname = "fish-completion";
ename = "fish-completion";
- version = "20190207.1358";
+ version = "20190429.122";
src = fetchFromGitLab {
owner = "Ambrevar";
repo = "emacs-fish-completion";
- rev = "23aafb993f8f74dca6e2f299030ca5d3e1aee95b";
- sha256 = "04dcqhdb544i7c6np4prbq13cwfxw37czmpnm3j36di6c1g9gkzb";
+ rev = "e5b9b65a077319dfdb2faca9ef847db3ef55d0db";
+ sha256 = "1pjqnbyjmj64q5nwq1mrdxcls4fp5y0b6zqs785i0s6wdvrm4021";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6d17ca0213ba5ef9dce92002e281e6f08c3492be/recipes/fish-completion";
@@ -33050,12 +33492,12 @@
melpaBuild {
pname = "flim";
ename = "flim";
- version = "20180328.1624";
+ version = "20190526.334";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "flim";
- rev = "faaa2b1f2bb8fcf835ddfb8981654e4d3b2bdbc6";
- sha256 = "0hr4qi5vhq3ravgky95k2n7hin97jln7fmkgbx45fcyiz8jbpz2z";
+ rev = "e4bd54fd7d335215b54f7ef27ed974c8cd68d472";
+ sha256 = "0sl3skyqqzanjrp34hd1rh8wvdgsj2cm7k7hx5kc5ipggp77720r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/94faf56ff9bf94f51ef5253e4c4244faec5eecfd/recipes/flim";
@@ -33147,6 +33589,34 @@
license = lib.licenses.free;
};
}) {};
+ flow-js2-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , flow-minor-mode
+ , js2-mode
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flow-js2-mode";
+ ename = "flow-js2-mode";
+ version = "20190214.230";
+ src = fetchFromGitHub {
+ owner = "Fuco1";
+ repo = "flow-js2-mode";
+ rev = "ef0211c9b292915ba3773998ca99e25f627aa5af";
+ sha256 = "0i35mkc9g3v7cgh30izg9azcvskd4fqxhfblj7sh5br2p1yw8w0p";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3487c252f013f6937c6731b57f2a9c1e5227a81d/recipes/flow-js2-mode";
+ sha256 = "05wx7z5f4mkiab8ahhhr3fi6awmsdl253fwapad5ag3kaimnmxv7";
+ name = "recipe";
+ };
+ packageRequires = [ emacs flow-minor-mode js2-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/flow-js2-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
flow-minor-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -33372,12 +33842,12 @@
melpaBuild {
pname = "flycheck";
ename = "flycheck";
- version = "20190320.326";
+ version = "20190503.153";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck";
- rev = "c311febff8c9bf07d6c6d486c32a07340ba62727";
- sha256 = "0kfd1a6na2h19ysdr0yziii79mbaqwgd3sjx4f0nvs4rs907a3iq";
+ rev = "47174a12fd84a685f36019632838c73b4813b66d";
+ sha256 = "15ng2pfkl826gfvsdnhapnnm24r8010sixw95ry3azrmjfd2z29b";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck";
@@ -33390,6 +33860,33 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-ameba = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , flycheck
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-ameba";
+ ename = "flycheck-ameba";
+ version = "20190512.1009";
+ src = fetchFromGitHub {
+ owner = "veelenga";
+ repo = "ameba.el";
+ rev = "b2c115905887ab6f12c08072e370e8ad2194e131";
+ sha256 = "0rrinj1w7z4r1zvq1nlnx3nhq3xd5pn06jd3hxrlyg7j11g8vla4";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/flycheck-ameba";
+ sha256 = "17jfqbzzb1xkz9yx5ww6pykjnixm5w8mvwva1kqbjs4f2bsqbc6p";
+ name = "recipe";
+ };
+ packageRequires = [ emacs flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-ameba";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-apertium = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -33633,6 +34130,32 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-clj-kondo = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , flycheck
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-clj-kondo";
+ ename = "flycheck-clj-kondo";
+ version = "20190410.815";
+ src = fetchFromGitHub {
+ owner = "borkdude";
+ repo = "flycheck-clj-kondo";
+ rev = "1402fb008f10198f09c55869cd713a99c3e72dff";
+ sha256 = "0ifkkw7mn83hw4yjx81h519fcabvdk73bavs3pbzck69v6li0mmy";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/20dca546bbad0fa7b713dc015d1b9a9b7caf5370/recipes/flycheck-clj-kondo";
+ sha256 = "0a61jq6g0arrsa97rl3frns8k9l9qxazb96ir99y9kskim4njl6r";
+ name = "recipe";
+ };
+ packageRequires = [ flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-clj-kondo";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-clojure = callPackage ({ cider
, emacs
, fetchFromGitHub
@@ -33662,6 +34185,33 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-clolyze = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , flycheck
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-clolyze";
+ ename = "flycheck-clolyze";
+ version = "20190422.1434";
+ src = fetchFromGitHub {
+ owner = "DLaps";
+ repo = "flycheck-clolyze";
+ rev = "9a3300eac22a7ff96accf37fa2d761c13cc38020";
+ sha256 = "1iphw65jn5yfkmxbjhc4igrqypsvfr7bxwxr41fdghsxldswqz9p";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69fb1a2c590eb1a9a7cae09a7080b24185e49c74/recipes/flycheck-clolyze";
+ sha256 = "1181g7ni0xihq0mbk6g6h7wh31hrg9q2xxsyrg6gb1zf4qqp2zyv";
+ name = "recipe";
+ };
+ packageRequires = [ emacs flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-clolyze";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-color-mode-line = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -34344,11 +34894,11 @@
melpaBuild {
pname = "flycheck-grammalecte";
ename = "flycheck-grammalecte";
- version = "20190212.805";
+ version = "20190517.944";
src = fetchgit {
url = "https://git.deparis.io/flycheck-grammalecte/";
- rev = "2f4812eaa6e809051e23c34a085df2b704a15741";
- sha256 = "0xzmr2c74f3375q4nx7zf2jpxawxdkid5mf5nw81wl2v55mv1k2q";
+ rev = "8ba9d41dad0c9c96760614ce7594ceb823f560de";
+ sha256 = "1l2n3vi7krd61bgwj7dg7qpkccimwfx3m0946fmxgrp0k6q41fn0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd82aa0568d998a3d176b5ee47b8a227438ea09/recipes/flycheck-grammalecte";
@@ -34722,12 +35272,12 @@
melpaBuild {
pname = "flycheck-mix";
ename = "flycheck-mix";
- version = "20170118.630";
+ version = "20190511.1457";
src = fetchFromGitHub {
owner = "tomekowal";
repo = "flycheck-mix";
- rev = "76684d4b5987925b98b254aab656f8bf8198ab88";
- sha256 = "130ddx83h88krd64kss4z59lfrmdi3433r95939kqsqfmhzvgx0k";
+ rev = "0bc301cfb6627e51a83312052641df1844ebce0a";
+ sha256 = "1wvlnxr01i1kbvbwh8zi1m4vld2nlw1vnzia6kci425s0wj5w8i5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fd2a4d71b7f4c0082b687a23fd367d55186625a9/recipes/flycheck-mix";
@@ -34856,12 +35406,12 @@
melpaBuild {
pname = "flycheck-objc-clang";
ename = "flycheck-objc-clang";
- version = "20181116.401";
+ version = "20190421.349";
src = fetchFromGitHub {
owner = "GyazSquare";
repo = "flycheck-objc-clang";
- rev = "a3781e47f14068c811534a3348bf479eeb3f2041";
- sha256 = "00a2wg6g74plbmva3bwms7brdlv9i28w51yxisiv04la126m69js";
+ rev = "b46ad43637cebf8467cf596d3e7b5f5d371789e9";
+ sha256 = "0qiva3sfxy0ilf062yd5kyirmimlc5nnl6954ijmf7r31z57n64z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4ff4412f507371b93cfb85fc744e54110cd87338/recipes/flycheck-objc-clang";
@@ -35213,12 +35763,12 @@
melpaBuild {
pname = "flycheck-pycheckers";
ename = "flycheck-pycheckers";
- version = "20190308.1115";
+ version = "20190523.1111";
src = fetchFromGitHub {
owner = "msherry";
repo = "flycheck-pycheckers";
- rev = "15951d3dfec4c63e4761af53a85f2ade6182bf82";
- sha256 = "01lbh1g2ndgsk71qyskx9aii95bbw787mrf98zh7ihk2ak5nskaz";
+ rev = "7969168b1367da6c48bf79f59ea0db0240ed66d9";
+ sha256 = "0xy0y0ywxfc422k4cdv5phh70fi77f6rn9imdbdkkd64x4lfahqr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers";
@@ -35462,12 +36012,12 @@
melpaBuild {
pname = "flycheck-swift3";
ename = "flycheck-swift3";
- version = "20190125.2050";
+ version = "20190420.1810";
src = fetchFromGitHub {
owner = "GyazSquare";
repo = "flycheck-swift3";
- rev = "ba4e831ff04b180323435214dd4cca8184968ad1";
- sha256 = "1ss2s3q2mv07ph87i2fki1nxq6b51xs4i1mll1faplj2nrr2hyzm";
+ rev = "811a765a0106bbdc8d6a721b22a2a97f3527df7c";
+ sha256 = "0gsiisshqml1s56p9k8lw5fd3mlnk2i9j886ybc7ahkkpq8sfdwz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f1fb8c731c118327dc0bbb726e046fec46bcfb82/recipes/flycheck-swift3";
@@ -35936,6 +36486,32 @@
license = lib.licenses.free;
};
}) {};
+ flymake-eslint = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flymake-eslint";
+ ename = "flymake-eslint";
+ version = "20190520.2111";
+ src = fetchFromGitHub {
+ owner = "orzechowskid";
+ repo = "flymake-eslint";
+ rev = "d4be92ea779ea333b599fd125817f943a676a63a";
+ sha256 = "1x0ipsg0gd5lflx7kyyaz7zv6xnjzmhh1k32f01qr69zarf31nw0";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b607c3b859f4564e316532a256a299c73e5f6f0/recipes/flymake-eslint";
+ sha256 = "0avirxxgjk3k8hqpnhay83ij7s3xr4ha4wz5lji1zyx6f6im6gyb";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/flymake-eslint";
+ license = lib.licenses.free;
+ };
+ }) {};
flymake-gjshint = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -36720,12 +37296,12 @@
melpaBuild {
pname = "flyspell-correct";
ename = "flyspell-correct";
- version = "20181223.348";
+ version = "20190408.310";
src = fetchFromGitHub {
owner = "d12frosted";
repo = "flyspell-correct";
- rev = "cf492832a59d1b1112868fff430a6f74f9baf83a";
- sha256 = "102nf4abm6kpk3mkf850hq55x61nvv919p66jdg9ry732682987b";
+ rev = "a443ba5f9037df1f1fef8a5fa721deafc2427b58";
+ sha256 = "1mvhlm0zrq0dxsgsapy0yc128yw2xbjb8lgsnyqhvagqm36rh5fd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fa06fbe3bc40ae5e3f6d10dee93a9d49e9288ba5/recipes/flyspell-correct";
@@ -37063,12 +37639,12 @@
melpaBuild {
pname = "fold-this";
ename = "fold-this";
- version = "20180828.636";
+ version = "20190605.1005";
src = fetchFromGitHub {
owner = "magnars";
repo = "fold-this.el";
- rev = "49bdb7fe6a8f207afb1f05382372674a7c876ba8";
- sha256 = "1h9afb019y1c488c2s6w7nas32b89lngrl7f90rd8i9ynm5lbvr0";
+ rev = "59bbba129a5c3b2f179287af7296a20b30f3abfd";
+ sha256 = "0n33paj20361xdkpvwysp53bpixkwawiy5xy9fvfjslk5lk4pa61";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9853fcb99bd8717c77fa2b3bafb6e85d0d5d491c/recipes/fold-this";
@@ -37088,12 +37664,12 @@
melpaBuild {
pname = "folding";
ename = "folding";
- version = "20170925.838";
+ version = "20190524.932";
src = fetchFromGitHub {
owner = "jaalto";
repo = "project-emacs--folding-mode";
- rev = "3bf134fd1ecfa8767ab7020c25281ea5ce9968a2";
- sha256 = "0kcm4k71syz778cbwqf68a63k4vmhygaib3ylwxbm5dq1dmr7iry";
+ rev = "a1361aa154b27bd4db2e1cfe6c3b81b4fc1fdc9a";
+ sha256 = "0ghj0nw2zlrppsgl6x2nda9fj4w04rz6647v9823wxhfirrgnd5z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1912296b7879019bea5ba8353d511496e3a9ca2d/recipes/folding";
@@ -37351,7 +37927,6 @@
, fetchFromGitHub
, fetchurl
, ghub
- , graphql
, let-alist
, lib
, magit
@@ -37361,16 +37936,16 @@
melpaBuild {
pname = "forge";
ename = "forge";
- version = "20190407.915";
+ version = "20190529.113";
src = fetchFromGitHub {
owner = "magit";
repo = "forge";
- rev = "d803da1d817453684c644ef2822c7e29cee768e3";
- sha256 = "1d10wb5j6lnc2r87qhwmfzbs9gav178g8vwsgx9cfhzzk9hyqd02";
+ rev = "0e1ffa3380b4cc0c04a46ab159b377a39eede2c7";
+ sha256 = "0hc460w00hp9ifdqka2399a55igx5nnhcdzsybh8jqwaz7vg4wwh";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/23512cf8152161322960d72a5ec49a7595003477/recipes/forge";
- sha256 = "0a1yvdxx43zq9ivwmg34wyybkw4vhgzd2c54cchsbrbr972x9522";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58c5ca46286712b2aa43e07bb5dcbc8b5eb321e8/recipes/forge";
+ sha256 = "1ykpjgbi2yak9ww54wnm1gxj9zff2ggldg9msg3219r8frzjcnjv";
name = "recipe";
};
packageRequires = [
@@ -37379,7 +37954,6 @@
emacs
emacsql-sqlite
ghub
- graphql
let-alist
magit
markdown-mode
@@ -37424,12 +37998,12 @@
melpaBuild {
pname = "format-all";
ename = "format-all";
- version = "20190330.1206";
+ version = "20190606.153";
src = fetchFromGitHub {
owner = "lassik";
repo = "emacs-format-all-the-code";
- rev = "7dd5c5e9f73ae36bb78567ee429ac88220938b6c";
- sha256 = "0j20k0d7v5zjdr2hkn3r9vymw343qkp1j8gj6jylr3j51c4gd2x3";
+ rev = "f3ed09c430c80d17fcc34f130f32072177f4ef2b";
+ sha256 = "0sb3nlwrf8gzj1p7ld1ahsl83d614y4fwy808r1md230g9cmafsg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f53143ebd42ef5be793b86d50b23f0a57617d6cc/recipes/format-all";
@@ -37634,12 +38208,12 @@
melpaBuild {
pname = "frame-mode";
ename = "frame-mode";
- version = "20190306.1949";
+ version = "20190506.2200";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "frame-mode";
- rev = "4551bf43bc087448ce0edcd67c36f68649e95274";
- sha256 = "0p3j6h8rcxwjmylg9rx86n6y6bysicif1hxan6xdwz3pskkhm3lj";
+ rev = "bec163a7aecae0847817fb0e36413b0ab1e47d1f";
+ sha256 = "06q0nc2wavmm9b1mnr4jl3lqia39l5x1hzzymja33rccnqzdmx8k";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e83da89eeee834cc14c0b128d55ef3634f76fd0/recipes/frame-mode";
@@ -37716,12 +38290,12 @@
melpaBuild {
pname = "frames-only-mode";
ename = "frames-only-mode";
- version = "20180114.1048";
+ version = "20190524.739";
src = fetchFromGitHub {
owner = "davidshepherd7";
repo = "frames-only-mode";
- rev = "9ebd895574bb0b3e4ef111d522b8039e274e8afc";
- sha256 = "03fis931cb5k7a0jjjgkzmq30g43543kinr8hw6z8xkaivh2yixy";
+ rev = "ce55b3ad3b3cb4c4253a0172bb8e9461814b2d64";
+ sha256 = "1sw1s2k4wch32h5r0z6bfyiw4qcwjz93lq36ix17r968r505djc2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e628416ad9420b3ac5bbfacf930a86d98958ac8/recipes/frames-only-mode";
@@ -37840,6 +38414,32 @@
license = lib.licenses.free;
};
}) {};
+ freeradius-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "freeradius-mode";
+ ename = "freeradius-mode";
+ version = "20190401.1043";
+ src = fetchFromGitHub {
+ owner = "VersBinarii";
+ repo = "freeradius-mode";
+ rev = "cf8bf0359cf6c77848facbd24b764b3e111b4c2d";
+ sha256 = "0ggkflx4lhyxqr7sgf1f3z0i3glmqyvl4bn16clh9ybl14q22rli";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a93de3f3933441b94303cd6dd25dabbade04dcc5/recipes/freeradius-mode";
+ sha256 = "1lk7px2v5rpfg7kakqcsg31pg69pk64x9j0j9bjwpkxc49bnk1w2";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/freeradius-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
fringe-current-line = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -37969,12 +38569,12 @@
melpaBuild {
pname = "fstar-mode";
ename = "fstar-mode";
- version = "20190319.1401";
+ version = "20190513.555";
src = fetchFromGitHub {
owner = "FStarLang";
repo = "fstar-mode.el";
- rev = "d63d1c48573c82317e5b5991486d1595094bcccd";
- sha256 = "0zz4dv28lpycjryb2lswpjwh4lhf6hh73grisk0ql33hg4rmsqwx";
+ rev = "b2540d287f6ef8036c47cbc80d11a546eee8fc41";
+ sha256 = "0m5n55pmji2szq5jg5zrsn6k507w7jya8s0h2y0qiiwk4cgv7693";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c58ace42342c3d3ff5a56d86a16206f2ecb45f77/recipes/fstar-mode";
@@ -38004,12 +38604,12 @@
melpaBuild {
pname = "fuel";
ename = "fuel";
- version = "20180224.1411";
+ version = "20190510.1541";
src = fetchFromGitHub {
owner = "factor";
repo = "factor";
- rev = "780bbd49cf82c9746ca5a3f42f4a4a27266ccee9";
- sha256 = "1fs6200rsbnk2lagz8qj17iynaf4c1fvb6sm03i53shsbarak2c3";
+ rev = "82893dceeef53643e96b73d58d4800273b05da97";
+ sha256 = "16yc1p9pvz3x9vs7dyjvx53qq26lpklldfl048x4vzr4gmaj648n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/fuel";
@@ -38185,12 +38785,12 @@
melpaBuild {
pname = "futhark-mode";
ename = "futhark-mode";
- version = "20190302.124";
+ version = "20190412.237";
src = fetchFromGitHub {
owner = "diku-dk";
repo = "futhark-mode";
- rev = "7140d0fcd509fac6deeda5b4065ede5ee5922466";
- sha256 = "06dpspyyqqwb2vhdxmxgw0n8kpb2zw5qczp4bck9vkayqxqb8ahn";
+ rev = "f8e5a13b39517e62607647422914a63fe60547b2";
+ sha256 = "1jahfp38h51synr00iwzs29pxij95hskb3smbi0f0wh0hzrpr81x";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/97210774b450b7611d2bfdf36e04a425835d86b9/recipes/futhark-mode";
@@ -38483,6 +39083,32 @@
license = lib.licenses.free;
};
}) {};
+ gcmh = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "gcmh";
+ ename = "gcmh";
+ version = "20190421.2326";
+ src = fetchFromGitLab {
+ owner = "koral";
+ repo = "gcmh";
+ rev = "65787bce5e21ee4a376008a67095a395ac9d5fed";
+ sha256 = "0bwbgr3xianq4d4c2isqd0rzhsvpc9djzrnac7v6bim867aighz8";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e478bee9aade9cdac22f9935b937978f3a3e1d3c/recipes/gcmh";
+ sha256 = "0h5l02k01dv74n04ybnm1416dfhr5sm3h3maq0pypxqdfz1anhsg";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/gcmh";
+ license = lib.licenses.free;
+ };
+ }) {};
gdscript-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -38597,12 +39223,12 @@
melpaBuild {
pname = "geiser";
ename = "geiser";
- version = "20190224.1248";
+ version = "20190514.1743";
src = fetchFromGitLab {
owner = "jaor";
repo = "geiser";
- rev = "156970ff1402512b4bbf53a5e1c22156cb0e2f9c";
- sha256 = "0n295p54zigbdiclfkacz3rqkxr6aib1npz0x8nkhnhv5avcwgyf";
+ rev = "e60e1c2b1baf8891e1af010af491faf422eacd43";
+ sha256 = "1xryyah24jz3fa5sajd0hfpb1sqhkv1ncrjhnkbizmi2lzzljqxz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/67dc8d6e33f3522043f96761b23ea68c9c27084e/recipes/geiser";
@@ -38624,12 +39250,12 @@
melpaBuild {
pname = "general";
ename = "general";
- version = "20190308.1342";
+ version = "20190420.740";
src = fetchFromGitHub {
owner = "noctuid";
repo = "general.el";
- rev = "5f1ae7fcf24c0a9d9aec164944796783c8d77d09";
- sha256 = "0xr4jbghr32q31hlsffslc43jj9qnn9pkz2v2pbl1ba4rh8dafjz";
+ rev = "356654668ee4f77aa330398c54b62fb33345fdff";
+ sha256 = "171g686ssslkn3yw9c2i4jimkn18qc722660fba4c45l520bv1h5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general";
@@ -39015,7 +39641,6 @@
, emacs
, fetchFromGitHub
, fetchurl
- , graphql
, let-alist
, lib
, melpaBuild
@@ -39023,19 +39648,19 @@
melpaBuild {
pname = "ghub";
ename = "ghub";
- version = "20190319.1643";
+ version = "20190529.338";
src = fetchFromGitHub {
owner = "magit";
repo = "ghub";
- rev = "c7ca6780bcd4d00d22e668e74b25f865ba892a45";
- sha256 = "0icy333p2f9bsg552hjliqi6b9cmygf2ix10xgbam1zzh1b77clz";
+ rev = "7deb60c402dc2d77b44738417fe247cd4d01e040";
+ sha256 = "1ji0nqlvgz7vy488qaqpw3bxpcy0yi1x95jmymcaq7yw35l0dnbk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f403587f77380d1db214aa34933a9b5cce1ef2bd/recipes/ghub";
sha256 = "15kjyi8ialpr1zjqvw68w9pa5sigcwy2szq21yvcy295z7ylzy4i";
name = "recipe";
};
- packageRequires = [ dash emacs graphql let-alist treepy ];
+ packageRequires = [ dash emacs let-alist treepy ];
meta = {
homepage = "https://melpa.org/#/ghub";
license = lib.licenses.free;
@@ -39340,12 +39965,12 @@
melpaBuild {
pname = "git-commit";
ename = "git-commit";
- version = "20190319.1652";
+ version = "20190501.1123";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "24fd932a2344306be82efec599212b0535abf253";
- sha256 = "14b1czjwjhi6xlnfg7vdjvp2fc927cpd8r1xp8kvnfjviwmav6gf";
+ rev = "65bae41baad0138fc8859742b1fd1899edc8468a";
+ sha256 = "086g5wxk5rriqyjhyyc385xmm5c2a9x0srxxixfrjh1jk7bxf2dg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit";
@@ -39522,6 +40147,35 @@
license = lib.licenses.free;
};
}) {};
+ git-identity = callPackage ({ dash
+ , emacs
+ , f
+ , fetchFromGitHub
+ , fetchurl
+ , hydra
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "git-identity";
+ ename = "git-identity";
+ version = "20190424.447";
+ src = fetchFromGitHub {
+ owner = "akirak";
+ repo = "git-identity.el";
+ rev = "d20f6178a8818dcd6c5911d9cbf98934823e619e";
+ sha256 = "0gaxm9l93vg4azj6sb650dq1l3nslnk62qvsgv0iw10k8azxy8d8";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebad3a7a81fbf0293ac04ba319929c8b24bb98f5/recipes/git-identity";
+ sha256 = "0kmpm5zp2x60r68in94x2bazq4wxx95n6zfc6mwiq8ln8m0164j0";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs f hydra ];
+ meta = {
+ homepage = "https://melpa.org/#/git-identity";
+ license = lib.licenses.free;
+ };
+ }) {};
git-io = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -39915,6 +40569,33 @@
license = lib.licenses.free;
};
}) {};
+ github-explorer = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , request }:
+ melpaBuild {
+ pname = "github-explorer";
+ ename = "github-explorer";
+ version = "20190420.2210";
+ src = fetchFromGitHub {
+ owner = "TxGVNN";
+ repo = "github-explorer";
+ rev = "3a67835b24366c64deb2aa33626330742895bb0c";
+ sha256 = "1yvdm7kiyiv79kysafjz8w2i66kqf1a98cwwyfykni4zj09hysi2";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e224d2272892fb6751a093b0306f399057e6098a/recipes/github-explorer";
+ sha256 = "0s7k9wspdmvgmyd5sws3asp3kjp5a4nnzvbyn6jp8bcwd7girmr0";
+ name = "recipe";
+ };
+ packageRequires = [ emacs request ];
+ meta = {
+ homepage = "https://melpa.org/#/github-explorer";
+ license = lib.licenses.free;
+ };
+ }) {};
github-issues = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -40086,12 +40767,12 @@
melpaBuild {
pname = "github-stars";
ename = "github-stars";
- version = "20181117.2048";
+ version = "20190517.619";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "github-stars.el";
- rev = "807de6da3ab32d278d68a1b709c012f6bfa4d280";
- sha256 = "152gqg2kvfnfflndx15zkyzapzfkv741rwd0g3m7dn37mblnhgvl";
+ rev = "bb79c80574cfff865342b6e262f2c9762edb4c15";
+ sha256 = "03lx8ndhikl2frdblbi3fsaz6xzfay6w2ngl1z0ib85wca55lzqp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/58df7d536f9711e10ecaa6e0a37b9ad255e8fca5/recipes/github-stars";
@@ -40218,12 +40899,12 @@
melpaBuild {
pname = "gitlab-ci-mode";
ename = "gitlab-ci-mode";
- version = "20190323.952";
+ version = "20190425.1358";
src = fetchFromGitLab {
owner = "joewreschnig";
repo = "gitlab-ci-mode";
- rev = "cfd39298a87e989473278d819dc0498a43fce45d";
- sha256 = "1naa7fngfzdj884kfriv777d99ksn36kxqv5rl5zv6h1sl25c6pr";
+ rev = "dac4e5125c78aa3ae12d2e35a66196d709676236";
+ sha256 = "1jkp9mnbiccqnha9zs646znqyqvy5jjb81kah7ghbkzdqqk2avm0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode";
@@ -40379,12 +41060,12 @@
melpaBuild {
pname = "glsl-mode";
ename = "glsl-mode";
- version = "20190326.1251";
+ version = "20190513.1845";
src = fetchFromGitHub {
owner = "jimhourihan";
repo = "glsl-mode";
- rev = "ee5d6aa5631e26792fa27c7e418224d514454591";
- sha256 = "1acgx4k4cb6pgvwzdgck9v9gk3ffnmvl7ylsljbi7pjxsiqkzp45";
+ rev = "eaea63a45d0dcb04ddbf069b4bcfd99f10919e44";
+ sha256 = "0fb6as099y1k8inc39n8hkmb63j1l4sd5q9cbyqz4shfczma3546";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c416822d54df436f29dcf9a5f26398685fdc17a2/recipes/glsl-mode";
@@ -40474,6 +41155,33 @@
license = lib.licenses.free;
};
}) {};
+ gn-mode = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "gn-mode";
+ ename = "gn-mode";
+ version = "20190428.1112";
+ src = fetchFromGitHub {
+ owner = "lashtear";
+ repo = "gn-mode";
+ rev = "fcf8e1e500d953364e97e7ebc5708a2c00fa3cd2";
+ sha256 = "0dz5kgzbgsssr38z2kg6m915cvfys42ag1k42bsra3la2pixywfx";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c6c27bce3d0aaf7e3791299a527d5f1fd69653/recipes/gn-mode";
+ sha256 = "1rn4xa1am1yd9k2hpi5b0zhs3pgq4hnhgxdgs258cmhszm8c6ii2";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/gn-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
gnome-calendar = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -40687,12 +41395,12 @@
melpaBuild {
pname = "gnus-recent";
ename = "gnus-recent";
- version = "20190115.951";
+ version = "20190423.446";
src = fetchFromGitHub {
owner = "unhammer";
repo = "gnus-recent";
- rev = "c6b287532fe82e95dce5a488f752c122567f9348";
- sha256 = "1lpjs5qgvplbbm2waixiyj3mk4698h09150chm1mwxjc0np2acj1";
+ rev = "d9375cfad0054a05c910c1210f0f37aa601aebba";
+ sha256 = "19ggfisfxq2bk62axdi0nipwxymrvnnvmijcrwc9yglbnhiigdb5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0b80d94cf1a8b8e2d4da5d45f65231aa4884a3a0/recipes/gnus-recent";
@@ -40755,6 +41463,32 @@
license = lib.licenses.free;
};
}) {};
+ gnus-summary-repo = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "gnus-summary-repo";
+ ename = "gnus-summary-repo";
+ version = "20190510.1052";
+ src = fetchFromGitHub {
+ owner = "TxGVNN";
+ repo = "gnus-summary-repo";
+ rev = "4787825eec56c4e90a746e98ab38ba44b6e1b2e1";
+ sha256 = "1nx742xg0c6vwc7zgaqbhf2xajby0i3b2xq46ldw96bkvwizry4g";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0decb1e7d7fd32dc4ed7e07c751621eea0af0ab5/recipes/gnus-summary-repo";
+ sha256 = "0lwdhymayqs1cx76lnral2cs5dhrxwzlpc1ivchbyr1pj9x2nj6w";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/gnus-summary-repo";
+ license = lib.licenses.free;
+ };
+ }) {};
gnus-x-gm-raw = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -40870,12 +41604,12 @@
melpaBuild {
pname = "go-complete";
ename = "go-complete";
- version = "20151015.228";
+ version = "20190408.2216";
src = fetchFromGitHub {
owner = "vibhavp";
repo = "go-complete";
- rev = "e39efc356f6e19f17db3f3d2c81f28d38b31a55e";
- sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha";
+ rev = "056294014f37a1004958ec17ebd6748deed63502";
+ sha256 = "021mc1lq4xvmj8dvnpr6hhfs08cd0r07d520h498b345y6a6ihdg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4df81abbf3b16f06fa327c1626bef1245ea77758/recipes/go-complete";
@@ -40923,12 +41657,12 @@
melpaBuild {
pname = "go-dlv";
ename = "go-dlv";
- version = "20160517.1346";
+ version = "20190413.923";
src = fetchFromGitHub {
owner = "benma";
repo = "go-dlv.el";
- rev = "45a9e8a047c9995eb7c802268d96b3e527569f41";
- sha256 = "0pph99fl3bwws9vr1r8fs411frd04rfdhl87fy2a75cqcpxlhsj4";
+ rev = "df03ade331d8fb46acc57ef358e696bc36129e04";
+ sha256 = "0sfx84cbxn8d3gsjg0zjam4yc7pjlyp3g94xa3xv91k71ncnijs1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/go-dlv";
@@ -41833,6 +42567,33 @@
license = lib.licenses.free;
};
}) {};
+ gopher = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , w3m }:
+ melpaBuild {
+ pname = "gopher";
+ ename = "gopher";
+ version = "20190512.651";
+ src = fetchFromGitHub {
+ owner = "msnyder-info";
+ repo = "gopher.el";
+ rev = "6f4accac226698b22e8388e41ad5723b12553dde";
+ sha256 = "02093q9dwbqjyq47j05cmxmw12690f4qqpwsj7qnqz15m9n4b6xc";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c01e1c5009e8a4fefe5169c8e97ead53f8f6621/recipes/gopher";
+ sha256 = "01b1mr8nn5yrq65y067slc7mvxigansbim0nha41ckyrkh8mw4fs";
+ name = "recipe";
+ };
+ packageRequires = [ emacs w3m ];
+ meta = {
+ homepage = "https://melpa.org/#/gopher";
+ license = lib.licenses.free;
+ };
+ }) {};
gore-mode = callPackage ({ fetchFromGitHub
, fetchurl
, go-mode
@@ -41942,6 +42703,32 @@
license = lib.licenses.free;
};
}) {};
+ goto-char-preview = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "goto-char-preview";
+ ename = "goto-char-preview";
+ version = "20190418.129";
+ src = fetchFromGitHub {
+ owner = "elpa-host";
+ repo = "goto-char-preview";
+ rev = "5ff31c670fa050ad44dbf3f2edacc877ec9ba6f4";
+ sha256 = "12pixfgjyf7shl8mmcfyfq8ma292r3ajhicy2f54hdjjn017h8hj";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b856d9304ba8814050634db54c8abb88e5dce772/recipes/goto-char-preview";
+ sha256 = "1h9lq9ka469day511nnv566kggja23pa8zhqxa805p6lp7132b4d";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/goto-char-preview";
+ license = lib.licenses.free;
+ };
+ }) {};
goto-chg = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -42019,6 +42806,32 @@
license = lib.licenses.free;
};
}) {};
+ goto-last-point = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "goto-last-point";
+ ename = "goto-last-point";
+ version = "20190525.1155";
+ src = fetchFromGitHub {
+ owner = "manuel-uberti";
+ repo = "goto-last-point";
+ rev = "031570d2e778db46e5a2b7d440bcd15c8307eb69";
+ sha256 = "0v80fk7k1jl6388fidsnbi4c6yjapskv03pgd87j8dkxmdn19spa";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/20148869e301d236bbf335e8545131488ad57f27/recipes/goto-last-point";
+ sha256 = "0lns0w7zvi8afsr64kcyn68arrjf7bqmpadw12zj100nnnvs40lh";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/goto-last-point";
+ license = lib.licenses.free;
+ };
+ }) {};
goto-line-preview = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -42029,14 +42842,14 @@
ename = "goto-line-preview";
version = "20190307.2336";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "goto-line-preview";
rev = "1e361d8c0b9596154db579e6ae5edbd51e12eedc";
sha256 = "16zil8kjv7lfmy11g88p1cm24j9db319fgkwzsgf2vzp1m15l0pc";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/231e0b056114a63aa472ccfc0cd24f2f12a31600/recipes/goto-line-preview";
- sha256 = "1mbc9p96rrxpafdfx7wq50aj4fd3c47p7pqjwqqfdgk9dskmsjc2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/goto-line-preview";
+ sha256 = "1id3msndzav59ljwdp7xnh0glbzc8d12phpywlb89h5nclj0rzsl";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -42134,12 +42947,12 @@
melpaBuild {
pname = "grab-mac-link";
ename = "grab-mac-link";
- version = "20190302.646";
+ version = "20190419.607";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "grab-mac-link.el";
- rev = "94e6130d7542bafdf594e45606d1148b0a5687f7";
- sha256 = "0p55gs2xkfw2lgzkaxjy869hqi1gqnxbxgndvkczzj3f0nzfsa0y";
+ rev = "b52d29cd78a60cfe874667a8987ed10e8eb0f172";
+ sha256 = "15qznll0358cgqb9m9hpr2if2rsskr29mpsg7h32xb6njqnn741m";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e4cc8a72a9f161f024ed9415ad281dbea5f07a18/recipes/grab-mac-link";
@@ -42415,12 +43228,12 @@
melpaBuild {
pname = "graphql-mode";
ename = "graphql-mode";
- version = "20190320.57";
+ version = "20190503.422";
src = fetchFromGitHub {
owner = "davazp";
repo = "graphql-mode";
- rev = "ebd6502c0901dd2864a6ac893659a0cd74b6ba73";
- sha256 = "169bp2ps0i931qlcn0nsngs8dycqzlr3dcb5smnlmbjylmqi9yjq";
+ rev = "74ee772a62103fe3ec4f291854a0604dd3f5bb9e";
+ sha256 = "050p8ig92sl82hrlwdiz91igzpd4bp793l942pr71vrr23fahra1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3850073e6706d4d8151bc6ab12963a19deae8be9/recipes/graphql-mode";
@@ -42907,12 +43720,12 @@
melpaBuild {
pname = "gruvbox-theme";
ename = "gruvbox-theme";
- version = "20190406.1946";
+ version = "20190424.2322";
src = fetchFromGitHub {
owner = "greduan";
repo = "emacs-theme-gruvbox";
- rev = "f05bfb9d8be4270dc919d14410f16f7da1fcd9e0";
- sha256 = "126kqvgjy71rimr4f7sgnh2j73i3i0s650bx84jl8n4k48x0hwz5";
+ rev = "69a6ddf6c7e8c84174b94900ba71ddd08ec0237f";
+ sha256 = "00qq92gp1g55pzm97rh7k0dgxy44pxziridl8kqm4rbpi31r7k9p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/gruvbox-theme";
@@ -42975,6 +43788,35 @@
license = lib.licenses.free;
};
}) {};
+ gsettings = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , gvariant
+ , lib
+ , melpaBuild
+ , s }:
+ melpaBuild {
+ pname = "gsettings";
+ ename = "gsettings";
+ version = "20190513.303";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "emacs-gsettings";
+ rev = "4d42b0d98ad9c62cec27cfdc662a93a0e84f4afb";
+ sha256 = "0kb68zij131696z53rmdlqmxic4cyipsb377l05sc8zx80z9pgqy";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebdd0285684c712748d6353bd2a4774bd97dd521/recipes/gsettings";
+ sha256 = "168zq3gp874k66jv8k78i6b1cb9042763aj9wpmcs9bz437hhw32";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs gvariant s ];
+ meta = {
+ homepage = "https://melpa.org/#/gsettings";
+ license = lib.licenses.free;
+ };
+ }) {};
gtk-pomodoro-indicator = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43095,12 +43937,12 @@
melpaBuild {
pname = "guix";
ename = "guix";
- version = "20190107.1126";
+ version = "20190507.1011";
src = fetchFromGitHub {
owner = "alezost";
repo = "guix.el";
- rev = "c4c96663fefe7e007c372e7d24d6e7016b70e4ee";
- sha256 = "1730q2dm84f15ycjdf3dgl2j8770mhr6qnyzxgac3zzkjr8pyvq7";
+ rev = "11e0dbf6491300d250efb3dc09d634b01e86b35b";
+ sha256 = "0j60v0h850cwxik1mhlnmqms47dkkqcnfx53qs66hi1zyp7pax5z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b3d8c73e8a946b8265487a0825d615d80aa3337d/recipes/guix";
@@ -43163,6 +44005,33 @@
license = lib.licenses.free;
};
}) {};
+ gvariant = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , parsec }:
+ melpaBuild {
+ pname = "gvariant";
+ ename = "gvariant";
+ version = "20190513.305";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "emacs-gvariant";
+ rev = "824e162b9b4e5aefc38850fad6dfaf1b4527599b";
+ sha256 = "07mxqr5wsbkhprg38lvgzba7r96b315dvsnvv9hb8cnxy5b94d7y";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a616ac75f77b1e61e1386bd905b6bcf3d8aaa3f/recipes/gvariant";
+ sha256 = "1ycrnfq60z9fycgqmp1y8jna0l0c2b6mlg6ggimb0rml1ili6npm";
+ name = "recipe";
+ };
+ packageRequires = [ emacs parsec ];
+ meta = {
+ homepage = "https://melpa.org/#/gvariant";
+ license = lib.licenses.free;
+ };
+ }) {};
gvpr-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43276,12 +44145,12 @@
melpaBuild {
pname = "hack-mode";
ename = "hack-mode";
- version = "20190407.1646";
+ version = "20190514.835";
src = fetchFromGitHub {
owner = "hhvm";
repo = "hack-mode";
- rev = "831bab05b283a719a4762fec0082cc599def93c7";
- sha256 = "1nzlzldmnz9hc9i09lzs4wqqvwv0x5n69kv0lq9rs5cqjm7yyphq";
+ rev = "17be6b0e986f591eba1e2afee327b48ca9e62f95";
+ sha256 = "0ddfjd47irdn6j8aalh9avv7vvi0mi5c80gaxdhrzxb5v5zfjbaa";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/27e238e5d2aaca810fd3fb6836ca49c9fa07cc87/recipes/hack-mode";
@@ -43302,12 +44171,12 @@
melpaBuild {
pname = "hack-time-mode";
ename = "hack-time-mode";
- version = "20170527.910";
+ version = "20190529.155";
src = fetchFromGitLab {
owner = "marcowahl";
repo = "hack-time-mode";
- rev = "73d6fcf8b39283526e5d4e3919193611e25a0898";
- sha256 = "1w0idf28fhyn0qmjk1zgh80gzcrkgx5bc8mb0xamc20i53wpr4xl";
+ rev = "df8e86ab04beb655bf5b3860f8bea41cf1fbc3eb";
+ sha256 = "1n4kirb65r4s8k2kiga857fk8zylk14ibq0k2vdx5b8axbz71ggh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6481dc9f487c5677f2baf1bffdf8f2297185345e/recipes/hack-time-mode";
@@ -43353,12 +44222,12 @@
melpaBuild {
pname = "hackernews";
ename = "hackernews";
- version = "20190211.1535";
+ version = "20190529.420";
src = fetchFromGitHub {
owner = "clarete";
repo = "hackernews.el";
- rev = "30798c7bc8cb7cd732d49a274d74057b4ce6cf74";
- sha256 = "1iifzz2n8ca6275rwmd3xp9lv0jp3c8nzhmrw3aarsnwdmxr1hmh";
+ rev = "2362d7b00e59da7caddc8c0adc24dccb42fddef9";
+ sha256 = "1hcc5b173yzcvvd2ls3jxrmsw2w9bi21m9hcpcirkn0nh93ywadv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c43a342e47e5ede468bcf51a60d4dea3926f51bd/recipes/hackernews";
@@ -43769,12 +44638,12 @@
melpaBuild {
pname = "haskell-mode";
ename = "haskell-mode";
- version = "20181122.23";
+ version = "20190525.1919";
src = fetchFromGitHub {
owner = "haskell";
repo = "haskell-mode";
- rev = "4aa88752ab23bca3ded36a9c9fd9c34cffbb129b";
- sha256 = "0697l2rpfacjapazvxhrnp0524zjgvw13c3168czljijknx3b54r";
+ rev = "aa382235ee3349e28fdb5096e462d394ef0cb00b";
+ sha256 = "0jra8gy7i5m9fnrl8jvmyswipmk3kkhzhf3nkqwkg04n6ykd64gj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode";
@@ -44163,12 +45032,12 @@
melpaBuild {
pname = "helm";
ename = "helm";
- version = "20190407.1013";
+ version = "20190605.2306";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "a52049cc51a7db2f2a98c93e0eef7a419271c7a7";
- sha256 = "0yb1hjs79g5417cw3kihdk8hvjx3lllf63qn0mn59zk62s9cdw68";
+ rev = "03f56db7c60c312920ac02f2dfafc40f27b44d0e";
+ sha256 = "1ych6d54zafxffba61msyra3ffqwyzpfz31p57gqcqaxnq9d80hz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm";
@@ -44441,12 +45310,12 @@
melpaBuild {
pname = "helm-bibtex";
ename = "helm-bibtex";
- version = "20190214.809";
+ version = "20190430.1118";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "helm-bibtex";
- rev = "72cdad743706f4bed185f7be918f67a8c3dcb59f";
- sha256 = "17f2gf4rsg3fqsj4kwiyi7cnr1q4xiam8b31kv2p1smh4qw8yfnh";
+ rev = "e1391a4be629b506f06d678bcdfd17d290904482";
+ sha256 = "11922djfvz32h6bv8gdzhpm7ddxw5gsdphjvjxa7cr2zj7x9nhx7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f4118a7721435240cf8489daa4dd39369208855b/recipes/helm-bibtex";
@@ -44512,6 +45381,33 @@
license = lib.licenses.free;
};
}) {};
+ helm-bitbucket = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , helm-core
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "helm-bitbucket";
+ ename = "helm-bitbucket";
+ version = "20190422.402";
+ src = fetchFromGitHub {
+ owner = "dragonwasrobot";
+ repo = "helm-bitbucket";
+ rev = "632495036c4a6ac30e408fc74ee9f209fd5ac429";
+ sha256 = "0rbgk982jlbqh1rhns3zmndfr3lpw7m2j9z7qylghkll4k8fcjpl";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8df73e21dee5144147f9432efe95ee576ac5f435/recipes/helm-bitbucket";
+ sha256 = "19bflbnavkwipf7mcrkg3i64iz50jmzm64nl7y1ka349mpy5sm04";
+ name = "recipe";
+ };
+ packageRequires = [ emacs helm-core ];
+ meta = {
+ homepage = "https://melpa.org/#/helm-bitbucket";
+ license = lib.licenses.free;
+ };
+ }) {};
helm-bm = callPackage ({ bm
, cl-lib ? null
, fetchFromGitHub
@@ -44567,7 +45463,8 @@
license = lib.licenses.free;
};
}) {};
- helm-bundle-show = callPackage ({ fetchFromGitHub
+ helm-bundle-show = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -44575,19 +45472,19 @@
melpaBuild {
pname = "helm-bundle-show";
ename = "helm-bundle-show";
- version = "20151221.430";
+ version = "20190526.701";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-bundle-show";
- rev = "b34523aa8a7f82ed9a1bf3643c35b65866a7877a";
- sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30";
+ rev = "70f1ca7d1847c7d5cd5a3e488562cd4a295b809f";
+ sha256 = "12wz98fcs8v8w74ck4jqbh47pp5956xxh9ld5kpym9zrm39adpq2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2f10f7387cca102696c38af1d8dc0fe5da5e366f/recipes/helm-bundle-show";
sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-bundle-show";
license = lib.licenses.free;
@@ -44648,6 +45545,34 @@
license = lib.licenses.free;
};
}) {};
+ helm-catkin = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , helm
+ , lib
+ , melpaBuild
+ , xterm-color }:
+ melpaBuild {
+ pname = "helm-catkin";
+ ename = "helm-catkin";
+ version = "20190425.820";
+ src = fetchFromGitHub {
+ owner = "gollth";
+ repo = "helm-catkin";
+ rev = "a3422346eb46e66a947a75f9e1b9975a672036be";
+ sha256 = "0d6g1nkaly9ss1h3i7qq3igzsfllw0zwkz5374pvmq53p3nk20r8";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c6e88d2a2fc07c8d25f4e1d973147805522a3261/recipes/helm-catkin";
+ sha256 = "1yr62riiva55c341s9x0fn9wdrv1j05s9a82xm2925jsyh5xzaxy";
+ name = "recipe";
+ };
+ packageRequires = [ emacs helm xterm-color ];
+ meta = {
+ homepage = "https://melpa.org/#/helm-catkin";
+ license = lib.licenses.free;
+ };
+ }) {};
helm-charinfo = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -44879,12 +45804,12 @@
melpaBuild {
pname = "helm-codesearch";
ename = "helm-codesearch";
- version = "20190405.411";
+ version = "20190412.453";
src = fetchFromGitHub {
owner = "youngker";
repo = "helm-codesearch.el";
- rev = "1dd925cdc7527f4e1cfb433d823d1be805455df3";
- sha256 = "1dpym7bwaavw9ggdhvma32f3kd0psrb4s2pcgni0j53hmawl7szr";
+ rev = "72f1d1de746115ab7e861178b49fa3c0b6b58d90";
+ sha256 = "1qxpx8jmkvg59k4rx99bn9asnh4nl5rwkjvbhprdlqaicglm153q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0a992824e46a4170e2f0915f7a507fcb8a9ef0a6/recipes/helm-codesearch";
@@ -44935,12 +45860,12 @@
melpaBuild {
pname = "helm-company";
ename = "helm-company";
- version = "20180828.912";
+ version = "20190522.2018";
src = fetchFromGitHub {
owner = "Sodel-the-Vociferous";
repo = "helm-company";
- rev = "d3fc093a0e833b4dee6561c00d6df3d62aa50f3f";
- sha256 = "1ciirsanhajdqm5iwl8k9ywf4jha1wdv4sc4d9kslyrfr9zn4q6k";
+ rev = "6995b79bdfce73e398d0185eba135f1e74cf37c2";
+ sha256 = "09jg4b7bbz5y7nrqlka3vb58s4rszl0ih4x61j724ksl637xrw66";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8acf7420f2ac8a36474594bc34316f187b43d771/recipes/helm-company";
@@ -44962,12 +45887,12 @@
melpaBuild {
pname = "helm-core";
ename = "helm-core";
- version = "20190407.1014";
+ version = "20190601.2326";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "a1791980f9ddca1989c65a67e6997bdde481dc27";
- sha256 = "1g6gj6wq3yiazyf73zk8hqc3nv52fg42g5gv5n8v766a3fb7bisq";
+ rev = "a70de280eb6ea870697f6686f79a27872a8b5483";
+ sha256 = "04v9sv8c79vr4fqg9r66wy8ifdri33j0bs6z5s7kmgq02ygfiwm4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core";
@@ -44991,12 +45916,12 @@
melpaBuild {
pname = "helm-cscope";
ename = "helm-cscope";
- version = "20190406.151";
+ version = "20190510.1751";
src = fetchFromGitHub {
owner = "alpha22jp";
repo = "helm-cscope.el";
- rev = "e4698933e26524c025533cbb8fd1e1ab61e1d940";
- sha256 = "0lq0qhgacafz56kblkghs6pgh4linw3s2646zcamy0psksmxjcli";
+ rev = "e91171032d7f0744dd210f69008b08024a7e5b1a";
+ sha256 = "0k6xb6vs90nirphfjw5gfhr718cgg4nnzz3h1iqzd40606qcdpf4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2e3460df1ec750053bc8402ad6eb822c10c697/recipes/helm-cscope";
@@ -45065,6 +45990,8 @@
};
}) {};
helm-dash = callPackage ({ cl-lib ? null
+ , dash-docs
+ , emacs
, fetchFromGitHub
, fetchurl
, helm
@@ -45073,19 +46000,19 @@
melpaBuild {
pname = "helm-dash";
ename = "helm-dash";
- version = "20190316.1309";
+ version = "20190527.418";
src = fetchFromGitHub {
owner = "areina";
repo = "helm-dash";
- rev = "192b862185df661439a06de644791171e899348a";
- sha256 = "06am5vnr4hsxkvh2b8q8kb80y5x1h3qyv7gwggswwhfa7w2vba3w";
+ rev = "6c76c794fec95586028633f24773451812af5df4";
+ sha256 = "0ajkflf6fzpxxgv2nzpxnc1d2rp32ba1lz9x4s2bini71krai88s";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dash";
sha256 = "032hwwq4r72grzls5ww7bjyj39c82wkcgf3k7myfcrqd3lgblrwb";
name = "recipe";
};
- packageRequires = [ cl-lib helm ];
+ packageRequires = [ cl-lib dash-docs emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-dash";
license = lib.licenses.free;
@@ -45099,12 +46026,12 @@
melpaBuild {
pname = "helm-descbinds";
ename = "helm-descbinds";
- version = "20180429.756";
+ version = "20190501.235";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-descbinds";
- rev = "033be73f21778633813264ce1634a6e1ad873d8e";
- sha256 = "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk";
+ rev = "b72515982396b6e336ad7beb6767e95a80fca192";
+ sha256 = "1bp2n32lvb1fhnwzk8s782i928m8mklv77jz5rq0ag1q7y740r31";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/447610a05422cd2f35399e43d98bf46410ff0408/recipes/helm-descbinds";
@@ -45347,12 +46274,12 @@
melpaBuild {
pname = "helm-emms";
ename = "helm-emms";
- version = "20190304.232";
+ version = "20190422.822";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-emms";
- rev = "b785cb845a98a643eba9d5d53c9c0b4e6810a3cd";
- sha256 = "1595r09y3rmwd46nnhvjja3hb8j2ila295ijxv61cg52ws4wginh";
+ rev = "89ec04e6548f16c5848cc49ad506e0561cea87ab";
+ sha256 = "0cn1amwgf5nm73yjxnhjsl6dvfcvh8qb2j2rhsyd6i8kzzkyplf2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/db836b671705607f6cd9bce8229884b1f29b4a76/recipes/helm-emms";
@@ -45746,7 +46673,8 @@
license = lib.licenses.free;
};
}) {};
- helm-ghq = callPackage ({ fetchFromGitHub
+ helm-ghq = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -45754,19 +46682,19 @@
melpaBuild {
pname = "helm-ghq";
ename = "helm-ghq";
- version = "20161015.117";
+ version = "20190526.709";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-ghq";
- rev = "21ccdb537a3be3d9351e01c6365df8e804e8bc56";
- sha256 = "1v3h6dszj223yvlkrjj6r4jwiyaj3iswbcl5d4ffwgaf72cxm4gn";
+ rev = "d0d6aa0f407388e7012f0443df8ae657ece01779";
+ sha256 = "08884pk0d6xplsn1z9slaf4b9mmam6s9dg4dcxi1na1inpi6y082";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e94eec646def7c77b15f6a6ac1841200848e62c7/recipes/helm-ghq";
sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-ghq";
license = lib.licenses.free;
@@ -45885,12 +46813,12 @@
melpaBuild {
pname = "helm-github-stars";
ename = "helm-github-stars";
- version = "20190326.924";
+ version = "20190428.347";
src = fetchFromGitHub {
owner = "Sliim";
repo = "helm-github-stars";
- rev = "8cea100f788832ad28c2a61b8fc805298383e263";
- sha256 = "0ml324fi7bqh32d2vg41y13zqj4yx0hsqp5nmb6sw74qics7g9ma";
+ rev = "c891690218b0d8b957ea6cb45b1b6cffd15a6950";
+ sha256 = "0050i3apv72klqi3s0zw5sv4r4sizx4vlw07l52i39ij7bzjhkzz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2e77f4a75504ca3e1091cdc757e91fb1ae361fa7/recipes/helm-github-stars";
@@ -46095,7 +47023,8 @@
license = lib.licenses.free;
};
}) {};
- helm-hatena-bookmark = callPackage ({ fetchFromGitHub
+ helm-hatena-bookmark = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -46103,19 +47032,19 @@
melpaBuild {
pname = "helm-hatena-bookmark";
ename = "helm-hatena-bookmark";
- version = "20180803.2246";
+ version = "20190526.712";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-hatena-bookmark";
- rev = "274e18182fe20c11e96009387a8e38e8cd2a1d7e";
- sha256 = "13s36gyb37asgrc9qca9d196i5bnxqy4acmda5cas08b48wp4lxk";
+ rev = "70b08add4f42ad430441399d266f47773f18835a";
+ sha256 = "007ghf8ac104ifm4idc60zy2rn310kncbcv0qg4wr9djl65n2m95";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark";
sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-hatena-bookmark";
license = lib.licenses.free;
@@ -46729,12 +47658,12 @@
melpaBuild {
pname = "helm-lsp";
ename = "helm-lsp";
- version = "20190104.1334";
+ version = "20190422.2248";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "helm-lsp";
- rev = "78e2d936589f60f61ebed21c896416a59375aa46";
- sha256 = "1cmcvzffqrmnbyrzi7brh118236ycb5bmr6np6c3h6janmhmml8n";
+ rev = "3a58ca4cfd94b9ab1e15e819d3b16ef568e8889b";
+ sha256 = "0wh5zai3s17ss2q8wcdd6d87hv1h3nbyrxxs4js9cas8m6y2ssjv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/67942b34975015dd6f2b5f6b43829cc13b1832c6/recipes/helm-lsp";
@@ -46783,12 +47712,12 @@
melpaBuild {
pname = "helm-make";
ename = "helm-make";
- version = "20190403.624";
+ version = "20190518.1246";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "helm-make";
- rev = "12c94f765401157d9ae0ba701636b50c9e313486";
- sha256 = "1qanvb2wggmznxvyx8cpfs0ah6ysk0sqp2ccki8c20835l0awnyv";
+ rev = "8eabcaf29102f5ab07543f627af5d75178c86d10";
+ sha256 = "0akyr99fkp3j2yipxik9fdsycd35jd6xb7q716k6ngwaa5gf2qka";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make";
@@ -46893,12 +47822,12 @@
melpaBuild {
pname = "helm-mu";
ename = "helm-mu";
- version = "20180513.221";
+ version = "20190410.1018";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-mu";
- rev = "77e6fea24e01481418738421dbcfe28ef1bd63cf";
- sha256 = "1lh0ahxdc5b2z18m9p30gwg8sbg33sjwkjr38p7h5xsm5fm7i0fz";
+ rev = "7793d96694505380c470cb7b31b4bd8a2781e529";
+ sha256 = "01410wi46ljpy1040wk9dp2k21nyhc3k6kwxpy35874bqhqn5r3i";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/63ee2e2aa622c96993c1b705d0fd223d6b36fd0f/recipes/helm-mu";
@@ -47308,12 +48237,12 @@
melpaBuild {
pname = "helm-projectile";
ename = "helm-projectile";
- version = "20180815.814";
+ version = "20190408.808";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "helm-projectile";
- rev = "8a2dbc973548fac89356c11d70f7f474ea1367a5";
- sha256 = "1lyka93dw4ndpw1qr1ixrng5lfdbz84yha5zl37imvkg68v6zi1x";
+ rev = "38d72b6b661234088bae9f3c2b3c18228a3c0564";
+ sha256 = "1n6x0is8nlf9ikgabz7889q5g7rikqs5292lvb1kvkb2rvbaa65g";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/helm-projectile";
@@ -47434,7 +48363,8 @@
license = lib.licenses.free;
};
}) {};
- helm-qiita = callPackage ({ fetchFromGitHub
+ helm-qiita = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -47442,19 +48372,19 @@
melpaBuild {
pname = "helm-qiita";
ename = "helm-qiita";
- version = "20180301.635";
+ version = "20190526.659";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-qiita";
- rev = "3ccb85640bf54491ed3c3c8110d454ae181650dc";
- sha256 = "03km0hm3jy6qcs8szqsmzpdmhfmyh121i5f68cf60am8y616f0kp";
+ rev = "5f82010c595f8e122aa3f68148ba8d8ccb1333d8";
+ sha256 = "1vkm2h0ia0gqqjw6cnbyik0fv37zzjwwdzk1cnh7a3s5hsg60i68";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee/recipes/helm-qiita";
sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-qiita";
license = lib.licenses.free;
@@ -48234,12 +49164,12 @@
melpaBuild {
pname = "helm-tramp";
ename = "helm-tramp";
- version = "20190124.2047";
+ version = "20190524.149";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-helm-tramp";
- rev = "a7456cee86a83d68c966475fab90ab94006fd23c";
- sha256 = "1yrwv3xzbqndns9lda70vpv75vipgjd5j9s1dx1ggfhx21kbnf9w";
+ rev = "af5bd50b955e385bc447080e720ffc85ed0b286b";
+ sha256 = "0s6zasnk9kwpiw3446n0jn7xi5v6w7asdpzx5aqh85karrb7bbq6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-tramp";
@@ -48400,12 +49330,12 @@
melpaBuild {
pname = "helm-xref";
ename = "helm-xref";
- version = "20190212.2259";
+ version = "20190524.243";
src = fetchFromGitHub {
owner = "brotzeit";
repo = "helm-xref";
- rev = "c258209ee6c21774ba3df89d3c6bd7afbb86af9f";
- sha256 = "1mznr67ivddms0vhaj4aglfkhfzssifrrv65pfm8ny76gwlvx73z";
+ rev = "d2744e6626fa40c9ef3c8537f858995e00f74e45";
+ sha256 = "1nfir7b7zqf0bprlap03iy68dzcfzs8b5p1f6sywf6az3l1h3swc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/helm-xref";
@@ -48535,24 +49465,23 @@
, fetchurl
, lib
, melpaBuild
- , s
- , shut-up }:
+ , s }:
melpaBuild {
pname = "helpful";
ename = "helpful";
- version = "20190407.1536";
+ version = "20190528.1416";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "helpful";
- rev = "53ae44bd2384de5e2513496ccf6ca2fce6767299";
- sha256 = "1fpqnimqbrwhpv714iw46i0dyb4gxdvh08640xbwbqpm9p546lm7";
+ rev = "897feba75ded5c93dcfc3d950319cf19c03252db";
+ sha256 = "1l5hgl7b3c23kwxd1b99wn8b545l3szjc0c72643wnd86i91m557";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful";
sha256 = "17w9j5v1r2c8ka1fpzbr295cgnsbiw8fxlslh4zbjqzaazamchn2";
name = "recipe";
};
- packageRequires = [ dash dash-functional elisp-refs emacs f s shut-up ];
+ packageRequires = [ dash dash-functional elisp-refs emacs f s ];
meta = {
homepage = "https://melpa.org/#/helpful";
license = lib.licenses.free;
@@ -48869,12 +49798,12 @@
melpaBuild {
pname = "hierarchy";
ename = "hierarchy";
- version = "20171221.351";
+ version = "20190425.142";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "hierarchy";
- rev = "06f21d3fc16c44c1fa45dc9c91d10100b4db9355";
- sha256 = "1sp59nc82qb40n8p08hr0j4ig7ypc2icvgz74057vs1q042asqqw";
+ rev = "a5bc6bf2e1bbd48cc17c508043134f24abb41944";
+ sha256 = "18y5xj8j07hca7qk5ygxqpiybv58qf4c85hqw52a59fkn0vvdbhg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7aea238a2d14e9f58c0474251984b6c617b6854d/recipes/hierarchy";
@@ -49650,6 +50579,32 @@
license = lib.licenses.free;
};
}) {};
+ hl-block-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "hl-block-mode";
+ ename = "hl-block-mode";
+ version = "20190519.1730";
+ src = fetchFromGitHub {
+ owner = "ideasman42";
+ repo = "emacs-hl-block-mode";
+ rev = "3bd2b55a629cb687def06f950639382b2d960ce0";
+ sha256 = "0pjhf4kzhf639pbm0fpf4sa1jsgd8sk1d4kwylnbvc82n1v03y3f";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2fbba8cc73a5d567b525ce2c0a15f35379f29e8/recipes/hl-block-mode";
+ sha256 = "16z49k1rn8n1f64fidff0jyhn3h4pmklys9plr96nbd4lvm80msj";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/hl-block-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
hl-fill-column = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -49659,12 +50614,12 @@
melpaBuild {
pname = "hl-fill-column";
ename = "hl-fill-column";
- version = "20181210.404";
+ version = "20190605.721";
src = fetchFromGitHub {
owner = "laishulu";
repo = "hl-fill-column";
- rev = "d6d121a71458052df5371ca2e2d867632d0b2eba";
- sha256 = "122i9f6sl8jhpdy6fwfr287lg66rcynknaq3qhf760wmdx1lpij9";
+ rev = "c96eb14298afa85e9eca84b9c148c3d0c2b270f0";
+ sha256 = "1cs3ibsn77xwyj53rwpg3vyc7c5h76jfy4j1cbjq6iczzh8kndmi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/68c40d7b6af664e01083b78c60b6a8e66b278a4e/recipes/hl-fill-column";
@@ -49729,26 +50684,27 @@
license = lib.licenses.free;
};
}) {};
- hl-todo = callPackage ({ fetchFromGitHub
+ hl-todo = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, lib
, melpaBuild }:
melpaBuild {
pname = "hl-todo";
ename = "hl-todo";
- version = "20190404.1434";
+ version = "20190415.1600";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "f7d97056d17ef7fc04f4fa0b65a703d1d1a5a6b8";
- sha256 = "07aj9zkr1142xdwmlrccpxpgyrzj9n2rdk74zcmn0jiryg8k8lnc";
+ rev = "487d349b7b8d6738223d5dd10957dd10b45eb9f3";
+ sha256 = "07xcc04ivpl5sbgb55qz84mz6wa500h0awzw1zq1ba5mfjjq8hls";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo";
sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4";
name = "recipe";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/hl-todo";
license = lib.licenses.free;
@@ -50365,16 +51321,16 @@
melpaBuild {
pname = "htmltagwrap";
ename = "htmltagwrap";
- version = "20181211.606";
+ version = "20190516.2211";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "htmltagwrap";
- rev = "c9722bcaf449ca3e52628827d063233f4c8a7d1f";
- sha256 = "0xd9841b9jfxsnmv5083yhh8d9fskyy7d0h0fhk922qcvhx0swhq";
+ rev = "3260d9267b51019328c30a6317f28e4a2dd7d522";
+ sha256 = "15rfg4z8lhwadgnr58r3skmzmkxs5phnqr1ap4bjd9pq618amdbn";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ab8c9de8a9a1d0f8a7dd70d2cb191fec8714592/recipes/htmltagwrap";
- sha256 = "1084vq3qpyjakph5yb95r0f7a4bjqfnhj5pnpv7qk39xnr640mxb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/htmltagwrap";
+ sha256 = "19vav9mpqfg6x017b2f4fkhixfw9fslhs03n780qq2n79abp77n9";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -50603,12 +51559,12 @@
melpaBuild {
pname = "hy-mode";
ename = "hy-mode";
- version = "20190310.1021";
+ version = "20190605.1426";
src = fetchFromGitHub {
owner = "hylang";
repo = "hy-mode";
- rev = "d7b4609a0c2ecc2a64f4328e63cf0899d72d930e";
- sha256 = "0gh81qk4yhgq46fm9a1cjs26d5vj3ip03i474b7v4aa7bc327jp7";
+ rev = "b8e67643b209661f82e1f8aa0dc24d8d486f3d5c";
+ sha256 = "0qn51lqv91rld0gzfrhimfqvb751gf7mnbd026c14cfjg7gmal5i";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9ab5cf16b61bb27559cd8ec5cf665a5aab2154/recipes/hy-mode";
@@ -50707,12 +51663,12 @@
melpaBuild {
pname = "hydra";
ename = "hydra";
- version = "20190405.315";
+ version = "20190525.117";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "hydra";
- rev = "480ae6313763a6af6dab85ed629aff2e2037bef0";
- sha256 = "0zs9nc0mix3cqgcn5p5my5nk3826ly4ydrpx1qjgc7m2aj2smxgv";
+ rev = "a2bb124a3f2e57c032fc264bcd08219fa3d513d9";
+ sha256 = "0wshlb3cz2l8idjwz881mvq96yik64gsxn87msayxb32xblvlcpf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/82d9e1bfd501ed2d1cd11319c5e1eb17482e8922/recipes/hydra";
@@ -50734,12 +51690,12 @@
melpaBuild {
pname = "hyperspace";
ename = "hyperspace";
- version = "20190216.2236";
+ version = "20190601.1258";
src = fetchFromGitHub {
owner = "ieure";
repo = "hyperspace-el";
- rev = "b059349eb9af5756e590cf2e5baf9432b6a9b96d";
- sha256 = "0c49n8y7y5wg6zpzzr1hqzv6w8nbiywmalmnd3z22qzwb0qc0cbh";
+ rev = "685c799abe28583769f59d3fd730da883107c5f8";
+ sha256 = "0iyy6lxf94w0w63yl2wzwxfvk9jqlh5gygadi9lf7nj3paqdp0x4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0696a12acba676015640de63fc6e011128bca71c/recipes/hyperspace";
@@ -51298,12 +52254,12 @@
melpaBuild {
pname = "ido-completing-read-plus";
ename = "ido-completing-read+";
- version = "20190308.836";
+ version = "20190502.1420";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "ido-completing-read-plus";
- rev = "d56125deac540a2ab396d6d71f7c1eeae7f37588";
- sha256 = "11wn2xf7dbgfhwdrjazshf4c5im1yxnqpyvq8633fjc1cn9s7vxw";
+ rev = "0e58f9271e7785d88ed90ca3ea0d7634abf4fb14";
+ sha256 = "0qpidk9l2bf34vxai2iwsafx8y1crcg1675mhn159z3dpgaz53wf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-completing-read+";
@@ -51378,12 +52334,12 @@
melpaBuild {
pname = "ido-flex-with-migemo";
ename = "ido-flex-with-migemo";
- version = "20190124.1937";
+ version = "20190407.2050";
src = fetchFromGitHub {
owner = "ROCKTAKEY";
repo = "ido-flex-with-migemo";
- rev = "676742cda0b7bb8a0bf6aa06f345cdc43c30cefa";
- sha256 = "0y54mf45540p4w021wgmym9gzm8i4hfx1a3bc94mafs6zw68vxqm";
+ rev = "aa93aa05947eb6c106bb9523ff3163b8574c4eac";
+ sha256 = "0k6zidi0ch4z9fg74k968pz7r0hzj56kccbf48k0is0fnzl4isxq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1647d1ae7400ddbc8367c355ade16b5c360b42fc/recipes/ido-flex-with-migemo";
@@ -51767,12 +52723,12 @@
melpaBuild {
pname = "idris-mode";
ename = "idris-mode";
- version = "20190228.1943";
+ version = "20190427.839";
src = fetchFromGitHub {
owner = "idris-hackers";
repo = "idris-mode";
- rev = "cb6aa30e76b6fdb7138db6d9673d5e8dc074177f";
- sha256 = "1b1aspkl442li8a6ahl8267wv4y8kdl42fi3w67ra0gpzj4788s8";
+ rev = "acc8835449475d7cd205aba213fdd3d41c38ba40";
+ sha256 = "0n9xbknc68id0mf8hbfmawi8qpvrs47ix807sk9ffv2g3ik32kk6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/17a86efca3bdebef7c92ba6ece2de214d283c627/recipes/idris-mode";
@@ -51818,12 +52774,12 @@
melpaBuild {
pname = "iedit";
ename = "iedit";
- version = "20181114.150";
+ version = "20190419.103";
src = fetchFromGitHub {
owner = "victorhge";
repo = "iedit";
- rev = "35505ad860be27feaee71e8caf646706bf8ee31d";
- sha256 = "154d0zxn4vn4y2xglccpxkzlmg9k1g58hldgimv67x9cphsc0mpi";
+ rev = "e2c100cdd67b7d82835d281ac2cd1bf4f374bc8f";
+ sha256 = "0wr3w2id95wx2rma8n1ifjrv9rx37ly26ijc5zi58id0yrip3hnc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/iedit";
@@ -51843,12 +52799,12 @@
melpaBuild {
pname = "ietf-docs";
ename = "ietf-docs";
- version = "20150928.257";
+ version = "20190420.151";
src = fetchFromGitHub {
owner = "choppsv1";
repo = "ietf-docs";
- rev = "ede30d6d26044069e1731fd20c0ab2324552c0b4";
- sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw";
+ rev = "ae157549eae5ec78dcbf215c2f48cb662b73abd0";
+ sha256 = "050c6fpf41xzx5kdpqcpa2rb0fk1a3h3009fdz77v0dp3bxv3a5d";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cedfdfe2c282d0484ea8239726f46a4861ef07ea/recipes/ietf-docs";
@@ -51868,12 +52824,12 @@
melpaBuild {
pname = "iflipb";
ename = "iflipb";
- version = "20190312.1242";
+ version = "20190427.1109";
src = fetchFromGitHub {
owner = "jrosdahl";
repo = "iflipb";
- rev = "50b39e0bca46da43f60d69e6066ddff910bdb144";
- sha256 = "0xxs7b0k51kjy4za7cz7bnl5s3crn1h5kxd03zhir3gy2d5cpwrw";
+ rev = "47d310a4576ae2195777d755cf86d5ea7525ef74";
+ sha256 = "0s35iiki06302q7bn2p5gdfv03y7w3d8rkk84hxr5azwhw1v2hcg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318/recipes/iflipb";
@@ -52091,6 +53047,7 @@
};
}) {};
imenu-anywhere = callPackage ({ cl-lib ? null
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -52098,19 +53055,19 @@
melpaBuild {
pname = "imenu-anywhere";
ename = "imenu-anywhere";
- version = "20170805.1155";
+ version = "20190512.1239";
src = fetchFromGitHub {
owner = "vspinu";
repo = "imenu-anywhere";
- rev = "fc7f0fd2f19e5ebee70156a99bf87393123893e3";
- sha256 = "0g2gb7jrys81kphmhlvhvzwl8l75j36y6pqjawh9wmzzwad876q5";
+ rev = "88b0e120284058b32252e4b0ed1a07c9fe44092f";
+ sha256 = "1w0n4hx29zc6n06qfq3ryc4dcfmk7wx3lw083yv7fi12hjj255vm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/imenu-anywhere";
sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/imenu-anywhere";
license = lib.licenses.free;
@@ -52203,12 +53160,12 @@
melpaBuild {
pname = "immaterial-theme";
ename = "immaterial-theme";
- version = "20190301.2259";
+ version = "20190412.415";
src = fetchFromGitHub {
owner = "petergardfjall";
repo = "emacs-immaterial-theme";
- rev = "b7ad831e49f5f4512f216f1f99b2d0eba3cc0815";
- sha256 = "0p363khj7mz9dq0dm12ksd6aamrkmm5a7vcsp0j8cmbc6r6a060c";
+ rev = "176178a57c5b342b04bebd3107c29c6d12086cf5";
+ sha256 = "0bsx0dh802x58vza9whgkkj6j16c6pcz7gdpvan50dmzs0h0pfz6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9a95d88bb00b1313da82929bc2733d726d2041d7/recipes/immaterial-theme";
@@ -52458,6 +53415,32 @@
license = lib.licenses.free;
};
}) {};
+ indian-ext = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "indian-ext";
+ ename = "indian-ext";
+ version = "20190424.847";
+ src = fetchFromGitHub {
+ owner = "paddymcall";
+ repo = "indian-ext";
+ rev = "a5450fe467393194bc2458c0d5e0a06c91bf117a";
+ sha256 = "0phbs9cx73vg9k9gp60vhlrn065skpva6gx0abp0g6rbzys2qx0b";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04e29d1a745d46ff32ccd9ee787ce1fe92786ec6/recipes/indian-ext";
+ sha256 = "07mny5rd2bmj1v260zfs4imp795lw4gnwr06pcx0s1ml2km1a2k2";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/indian-ext";
+ license = lib.licenses.free;
+ };
+ }) {};
indicators = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -52497,12 +53480,12 @@
melpaBuild {
pname = "indium";
ename = "indium";
- version = "20190305.1308";
+ version = "20190517.26";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "Indium";
- rev = "09a97c0aabb9d972e86cd7453e3f9663ba896447";
- sha256 = "1zzc02k6745y32mbvca4nbl55gbshvrd6ya0i04v2q1vvlx30mi3";
+ rev = "3ab9cd7d841ab3722bb041109064d2f85b2bb7bd";
+ sha256 = "1w9h20rnfysc2caz9cy3s7q38x6b8lgag5r9wc03h0rn0qz7fq7q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4292058cc6e31cabc0de575134427bce7fcef541/recipes/indium";
@@ -52549,12 +53532,12 @@
melpaBuild {
pname = "inf-clojure";
ename = "inf-clojure";
- version = "20190327.908";
+ version = "20190531.811";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "inf-clojure";
- rev = "16455abd28933af7c7d6f22dd41414a3c3c66d63";
- sha256 = "0qdrp48i6kn0fa1qjy8gf1c3asgl5dj012dhl1xd4vp3qmgshgrw";
+ rev = "0fc23509a1e66bcc3e694066f5067fdbd7b7961d";
+ sha256 = "0w42ms5p5f1f7ir745srj73pj9jy1rfkbh3nf85ms05jgrs10fw9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure";
@@ -53189,12 +54172,12 @@
melpaBuild {
pname = "intero";
ename = "intero";
- version = "20190308.834";
+ version = "20190530.608";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "intero";
- rev = "8da81244783fbf03afb49660423c875f2e874fba";
- sha256 = "17vibxapzp4wf0dfc56x98wsf3wy98ghj5h10nyf7xcfwy6k0rja";
+ rev = "188211d1238a108ea47ab93216d0ae9c4a426dee";
+ sha256 = "0y00iwd7vv14jzlfq733gld22rbz8xqzcgrzj21np6nhkrfxyjlx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero";
@@ -53575,12 +54558,12 @@
melpaBuild {
pname = "irony";
ename = "irony";
- version = "20190125.434";
+ version = "20190516.1648";
src = fetchFromGitHub {
owner = "Sarcasm";
repo = "irony-mode";
- rev = "93b91d746a5ae3ec99f9c7614522de08edc1426c";
- sha256 = "0pgdg13prr4j4dv7s7wfgrnn6h2z61aggqvlsqvid1vfr3xbg5wb";
+ rev = "c3ae899b61124a747ebafc705086345e460ac08e";
+ sha256 = "06ld83vzyklfmrfi6pp893mvlnhacv9if75c9pbipjvy6nwfb63r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/irony";
@@ -53647,6 +54630,33 @@
license = lib.licenses.free;
};
}) {};
+ isearch-project = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "isearch-project";
+ ename = "isearch-project";
+ version = "20190505.119";
+ src = fetchFromGitHub {
+ owner = "elpa-host";
+ repo = "isearch-project";
+ rev = "462b8100451b947367aed2970c2669ea6d15edbd";
+ sha256 = "0b8ncpi6kps7fx3fmgfwd2czaal52laf2k6pn46yh110sz6dl30m";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4f0a2f3080e9f4db82fb2bb9279418e4b9a7e2/recipes/isearch-project";
+ sha256 = "0f6f3lm5p4h8z9bnhbl27pzgwdjj58pp8lsvc5dic0yzykx7j2y8";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/isearch-project";
+ license = lib.licenses.free;
+ };
+ }) {};
isearch-symbol-at-point = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53967,12 +54977,12 @@
melpaBuild {
pname = "ivy";
ename = "ivy";
- version = "20190407.1029";
+ version = "20190605.537";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "11b00073cb348aedf1d648a991bab71e20178268";
- sha256 = "1pylfgjrgcapya3dmivcaq5vnqx6h8lrq3xnx7sq11sw5fn6sw0n";
+ rev = "ef6d3dbe0fbc797e622fb7b5dd5f290ed3cc5ca7";
+ sha256 = "1r4j9xvm1gdqbnylpgjl7bx1ssnhjpxkljia4av24qm9rf7ki0vf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy";
@@ -53999,12 +55009,12 @@
melpaBuild {
pname = "ivy-bibtex";
ename = "ivy-bibtex";
- version = "20190214.809";
+ version = "20190430.1118";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "helm-bibtex";
- rev = "72cdad743706f4bed185f7be918f67a8c3dcb59f";
- sha256 = "17f2gf4rsg3fqsj4kwiyi7cnr1q4xiam8b31kv2p1smh4qw8yfnh";
+ rev = "e1391a4be629b506f06d678bcdfd17d290904482";
+ sha256 = "11922djfvz32h6bv8gdzhpm7ddxw5gsdphjvjxa7cr2zj7x9nhx7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c23c09225c57a9b9abe0a0a770a9184ae2e58f7c/recipes/ivy-bibtex";
@@ -54251,12 +55261,12 @@
melpaBuild {
pname = "ivy-mpdel";
ename = "ivy-mpdel";
- version = "20180502.1148";
+ version = "20190428.220";
src = fetchFromGitHub {
owner = "mpdel";
repo = "ivy-mpdel";
- rev = "16c0e67e4411c4da158a708edf427505ebbf8845";
- sha256 = "0ddvp8d5vxab40rmk7zj5r8hwgszrl18p0mj8fal7yp1f8la550d";
+ rev = "a42dcc943914c71975c115195d38c739f25e475c";
+ sha256 = "0zf007j3i9prlsqjaf0xw7ylaim463f867nfc63fpsr508xsn5rd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/ivy-mpdel";
@@ -54279,12 +55289,12 @@
melpaBuild {
pname = "ivy-omni-org";
ename = "ivy-omni-org";
- version = "20190308.1936";
+ version = "20190420.538";
src = fetchFromGitHub {
owner = "akirak";
repo = "ivy-omni-org";
- rev = "ab18ca56759aa3428ca017da223dd2eb17feb078";
- sha256 = "1c5mk3dbbjan3fh5sy03dhhdmjawbrnqdf6m1sdkpv379hf9py2f";
+ rev = "7e51f8a1643d44eb930e1a04f11eb381ac6b8d92";
+ sha256 = "06jfg12afcn3kpd7l0ymp72pbpc5059rvqbpmzpjbr0yswxwzmq4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4eaad7323462d6c7fd343ede0d2df8c67885e542/recipes/ivy-omni-org";
@@ -54390,12 +55400,12 @@
melpaBuild {
pname = "ivy-posframe";
ename = "ivy-posframe";
- version = "20190407.544";
+ version = "20190605.1738";
src = fetchFromGitHub {
owner = "tumashu";
repo = "ivy-posframe";
- rev = "3aabf14e24c407c39ee5af85e18cb26f1f157af5";
- sha256 = "04pv0mcl69cys7lcsyr1ms45wjq5xcq9q23d5r351h8qn3q4bcwf";
+ rev = "f5da408348f577c4828f61ccc7e02c123fd4a1df";
+ sha256 = "13yn9xdv638xlfv2wxnmslc7x6k6082ibaa3vrwdf0c0jx9qv7yd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9e7c6f7ca439683abf11dcaa38672ac139c0da4f/recipes/ivy-posframe";
@@ -54418,12 +55428,12 @@
melpaBuild {
pname = "ivy-prescient";
ename = "ivy-prescient";
- version = "20190313.2133";
+ version = "20190523.1034";
src = fetchFromGitHub {
owner = "raxod502";
repo = "prescient.el";
- rev = "6a729df6e97af2bbbdce4a4536a237e47e51555d";
- sha256 = "0j55qbwmqn89q8ngzaq6pryp9xxdag99ggvs24n0yw6qwpw7v2h5";
+ rev = "ae414dde56f3430867faf41c04e4c3df75f9c960";
+ sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a92495d09689932ab9f0b716078ceeeb9cc154e0/recipes/ivy-prescient";
@@ -54473,12 +55483,12 @@
melpaBuild {
pname = "ivy-rich";
ename = "ivy-rich";
- version = "20190316.2315";
+ version = "20190603.1719";
src = fetchFromGitHub {
owner = "Yevgnen";
repo = "ivy-rich";
- rev = "16af79860493f924319ccb6c3588a61aded94948";
- sha256 = "0c9jqppmywijyjh0b5fv5p1jricj6vrvkrnfm7na02zh26rjx1qj";
+ rev = "f6bfa293c6df0b43cc411876b665816ec3f03d08";
+ sha256 = "1s8nwwb1z6lkc58g02pi8w99qms948k8d02lw8k8cq47dw87i219";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/ivy-rich";
@@ -54889,6 +55899,32 @@
license = lib.licenses.free;
};
}) {};
+ janet-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "janet-mode";
+ ename = "janet-mode";
+ version = "20190604.2143";
+ src = fetchFromGitHub {
+ owner = "ALSchwalm";
+ repo = "janet-mode";
+ rev = "d5555cc83c1893a1c0ea04d48857d5e71b138c06";
+ sha256 = "1lzs5zh4ipvyxi5vzbcpxrdjrrb0vddbcajzcbsi0784cs3ndzkk";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c94abb076bf1f3fd6654cc1857b7b3cfe5bf5e58/recipes/janet-mode";
+ sha256 = "1kr5ldrgqrl0hfpkf6x5a0kr0l4psykw771n5dx6ably6mnlpphh";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/janet-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
japanese-holidays = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -55262,12 +56298,12 @@
melpaBuild {
pname = "jdee";
ename = "jdee";
- version = "20190217.229";
+ version = "20190418.926";
src = fetchFromGitHub {
owner = "jdee-emacs";
repo = "jdee";
- rev = "1b1bdf01864d38173c9972234b02f81b47781757";
- sha256 = "08nspkv8gxhiqyqyjlv0gf59ccfrkddxd0664dzygnz9dzannhrs";
+ rev = "b9ce633d68ece00dac03d3eeddc4477de53e5e38";
+ sha256 = "0gwcl9c0y2s9xyrajwrwiaklfd8as9hmmq0lbrd7fy4q0l0vpr98";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a6d2c98f3bf2075e33d95c7befe205df802e798d/recipes/jdee";
@@ -55426,12 +56462,12 @@
melpaBuild {
pname = "jenkins";
ename = "jenkins";
- version = "20170721.236";
+ version = "20190520.2100";
src = fetchFromGitHub {
owner = "rmuslimov";
repo = "jenkins.el";
- rev = "1ec967973db685c9d84133ec6a5e06489ce06b62";
- sha256 = "1ai5adv46van2g029x9idj394ycczfacyhyv291sasf8mv9i7j4b";
+ rev = "9c7b9d4cb39eff7d6ac4d0cbd5ebc103dc86cac2";
+ sha256 = "1s49xmpc975q1ffb5c7cjrcwpa4a7kcakri26f5vqy3hn1h0c2v7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed2da33db5eaea1a37f86057da174a45cd37ea5/recipes/jenkins";
@@ -55728,6 +56764,33 @@
license = lib.licenses.free;
};
}) {};
+ jq-format = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , reformatter }:
+ melpaBuild {
+ pname = "jq-format";
+ ename = "jq-format";
+ version = "20190428.734";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "emacs-jq-format";
+ rev = "47e1c5adb89b37b4d53fe01302d8c675913c20e7";
+ sha256 = "1g9chp1b3lkrg46b39swrkvp5willi0ay3i177jdp6knbzhj4mq3";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce800af0c5dd7f1e4ab7ade92a863ce500c12fce/recipes/jq-format";
+ sha256 = "1ljbpgcs1s1if9s5c10k12f23rad7172k7y3s38ipn7vl7wmarw0";
+ name = "recipe";
+ };
+ packageRequires = [ emacs reformatter ];
+ meta = {
+ homepage = "https://melpa.org/#/jq-format";
+ license = lib.licenses.free;
+ };
+ }) {};
jq-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -55866,12 +56929,12 @@
melpaBuild {
pname = "js-comint";
ename = "js-comint";
- version = "20181106.1438";
+ version = "20190605.1706";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "js-comint";
- rev = "01be9d821269c513665d00416f6dac5c77808801";
- sha256 = "17933bxyq6jff2ibaxj2w4d9i9a5hbcfv5kh84m2vqgxcilvlx2a";
+ rev = "ab8953bdf0176b1fadd7a3bb621f848ec5dc1f0c";
+ sha256 = "0li5za8zamwpr6cdz4b171wa0njana0ddmclrkbw1imkarb4yhp5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca/recipes/js-comint";
@@ -56027,12 +57090,12 @@
melpaBuild {
pname = "js2-mode";
ename = "js2-mode";
- version = "20190307.849";
+ version = "20190420.1544";
src = fetchFromGitHub {
owner = "mooz";
repo = "js2-mode";
- rev = "7db4871cf50fab1a1086680ead2c70d1e454be6a";
- sha256 = "1rg263ry06wny5lcmmlzaafq5bqy9llik8ymhbak7gmjypb699fq";
+ rev = "ae9fea81cf9ed80f403c161fde4d8aff1ceb3769";
+ sha256 = "0fwkn7dki487c2qbj022p4pqa2xlqjkj8jz1hf7wjzii0x33qrs1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode";
@@ -56450,12 +57513,12 @@
melpaBuild {
pname = "julia-repl";
ename = "julia-repl";
- version = "20190124.259";
+ version = "20190420.755";
src = fetchFromGitHub {
owner = "tpapp";
repo = "julia-repl";
- rev = "54b4aa31d96e6945d07304dcb189289e2f8be1b4";
- sha256 = "1jjygzz3v9iw7ixvfqvy0faa4nkg2dl5qp8jd3yxbawyx6g304n9";
+ rev = "6eb58ef8b2e922e042fb0aee399547291fce06a4";
+ sha256 = "05siwlyafga6ihksmd4v7dlhn1c3f6vg4ns255apm7vnmfryzvkf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9a2a494969a9caf2f4513b12504379c9685047dc/recipes/julia-repl";
@@ -56662,12 +57725,12 @@
melpaBuild {
pname = "jupyter";
ename = "jupyter";
- version = "20190406.1040";
+ version = "20190601.2319";
src = fetchFromGitHub {
owner = "dzop";
repo = "emacs-jupyter";
- rev = "53c2ffdd513206cbe45f44b848dc053de2c17db1";
- sha256 = "1fwq8zvsjc8y4jvqnq5aa03an2pffayaiq92h39bbmf8hv59b6xd";
+ rev = "932baad3792b5ba5d701974ae008d5d8d6e22726";
+ sha256 = "0a4lxwiaybq89zg7np5x364wbvxwhyvmwjbbang4sgs403in8734";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a63a933e193a52e60950331ec982c5f5cdfaa5d9/recipes/jupyter";
@@ -56839,6 +57902,35 @@
license = lib.licenses.free;
};
}) {};
+ kakoune = callPackage ({ emacs
+ , expand-region
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , multiple-cursors
+ , ryo-modal }:
+ melpaBuild {
+ pname = "kakoune";
+ ename = "kakoune";
+ version = "20190601.1638";
+ src = fetchFromGitHub {
+ owner = "jmorag";
+ repo = "kakoune.el";
+ rev = "50488df2eeb6e8bfe72cfad4de24060819b148eb";
+ sha256 = "0ym3hbiwjraqsk3clcrkllr7jlj5zqsbxqq94ds2vj0x3f9i81fq";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7e554f20c378aabd9736fdd606e513d2cbf951f/recipes/kakoune";
+ sha256 = "0ps904m3vb2v5jykc6mk9cb974imiac0pw6b7q1p9x5swk8h4jh5";
+ name = "recipe";
+ };
+ packageRequires = [ emacs expand-region multiple-cursors ryo-modal ];
+ meta = {
+ homepage = "https://melpa.org/#/kakoune";
+ license = lib.licenses.free;
+ };
+ }) {};
kaleidoscope = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -56952,12 +58044,12 @@
melpaBuild {
pname = "kaolin-themes";
ename = "kaolin-themes";
- version = "20190405.39";
+ version = "20190605.851";
src = fetchFromGitHub {
owner = "ogdenwebb";
repo = "emacs-kaolin-themes";
- rev = "dcaf5b5d7f2bbfe0ac8d224b4dbb24a68775314b";
- sha256 = "06qnpnm67d89jkl504kyqd724pab6jlha9zkd1b95rj17b54ng8l";
+ rev = "2008e48bd5c31bae55fc03556768d19dd6dc159f";
+ sha256 = "1h92s4dd64plg0i2qg5pvdilwxik5anhn6lmy2jvjf2vx8p35zr5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4/recipes/kaolin-themes";
@@ -57007,12 +58099,12 @@
melpaBuild {
pname = "kapacitor";
ename = "kapacitor";
- version = "20180909.2142";
+ version = "20190414.1208";
src = fetchFromGitHub {
owner = "Manoj321";
repo = "kapacitor-el";
- rev = "b0e95f98b965f215be6ead14779949d5cf358ea5";
- sha256 = "0ahi9ar32kwf7cinxp29c3yhjfibg509pvxv5s0gn31szdqq216p";
+ rev = "e3300d8b4017a2f66b0d929cb85bcc7ee2612072";
+ sha256 = "05vrfii2n2g2q60dzgw23ck6gxxm3d7fsabi4z0g3k9gc6wrsl5l";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/db1f8cfcda2fa2b9be74a6cd9f95608e8b3f50bb/recipes/kapacitor";
@@ -57203,6 +58295,32 @@
license = lib.licenses.free;
};
}) {};
+ key-quiz = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "key-quiz";
+ ename = "key-quiz";
+ version = "20190604.2138";
+ src = fetchFromGitHub {
+ owner = "federicotdn";
+ repo = "key-quiz";
+ rev = "8cab861e28dd2c956acdba2632f78a58a85b7c70";
+ sha256 = "01f0jyz2v1aiy79jhdnaw3n1a0dmj8p9z6zgz28xbap44zyh3v1b";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e87df606bf768e3a731234c444077a11601ecc4a/recipes/key-quiz";
+ sha256 = "0zcs4nm9jis60ghm0xi84yc945xm45n0q1xp8ic1ix48wf7jq7a0";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/key-quiz";
+ license = lib.licenses.free;
+ };
+ }) {};
key-seq = callPackage ({ fetchFromGitHub
, fetchurl
, key-chord
@@ -57421,12 +58539,12 @@
melpaBuild {
pname = "keystore-mode";
ename = "keystore-mode";
- version = "20190316.700";
+ version = "20190409.1246";
src = fetchFromGitHub {
owner = "peterpaul";
repo = "keystore-mode";
- rev = "65ffee8834cb171c53e917ae8c183db6f646f471";
- sha256 = "1lzjqzbaq0wd9gims4mj8rga8wmj4kvig63cvnygd93f0sbbirkk";
+ rev = "43bd5926348298d077c7221f37902c990df3f951";
+ sha256 = "06cznkqkm04zz5lqfb514aqvsr2p13arzysixv0ss0bqpvdq7cv7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7870d808fc19096ed6ecde5e9297b28254466210/recipes/keystore-mode";
@@ -58011,6 +59129,7 @@
};
}) {};
ksp-cfg-mode = callPackage ({ cl-lib ? null
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -58018,19 +59137,19 @@
melpaBuild {
pname = "ksp-cfg-mode";
ename = "ksp-cfg-mode";
- version = "20180608.2247";
+ version = "20190414.1648";
src = fetchFromGitHub {
owner = "lashtear";
repo = "ksp-cfg-mode";
- rev = "fda64705f605fb8fccee53a5040fe4865ca17d44";
- sha256 = "19brscxk85cky2kzwyyljz6xqrfvyyyg7dqmadlnlrf8kw9wnb2x";
+ rev = "faec8bd8456c67276d065eb68c88a30efcef59ef";
+ sha256 = "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode";
sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/ksp-cfg-mode";
license = lib.licenses.free;
@@ -58074,12 +59193,12 @@
melpaBuild {
pname = "kubernetes";
ename = "kubernetes";
- version = "20190327.1744";
+ version = "20190604.1834";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "kubernetes-el";
- rev = "5839c89b7187573346813bc3dd6b43b5acdda7cb";
- sha256 = "0wmadjlrcnjv10cmxkmb02n3fvns7hghlk0zcpxjis2gfmng9px7";
+ rev = "95d5c934f2955388bdd2f568b8e5c706ce15c21b";
+ sha256 = "1kahnk2cy96zpxb35vj7f9zanb1nm79p3wxgq4cwgmi6h6gj0arq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/16850227ea48f6f38102b9cdf80e0758766a24d2/recipes/kubernetes";
@@ -58866,12 +59985,12 @@
melpaBuild {
pname = "ledger-import";
ename = "ledger-import";
- version = "20190131.1205";
+ version = "20190501.2156";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "ledger-import";
- rev = "2c199fcc8671c2ec82e62cea7716289426b7407c";
- sha256 = "0szi5k05qja28nx0rnl3amh3qf2f470sycdjgmpazgqh4zpkngsp";
+ rev = "6911708e373e2cbdb3868df7711ef07925ed36bf";
+ sha256 = "15vz5fy5yr4m3b77nikqln3y5bihjdmrzgxbp56hz83dqkkcnc4l";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4a1e2a9546b8b40f5f880197cb8166a6a715451f/recipes/ledger-import";
@@ -58892,12 +60011,12 @@
melpaBuild {
pname = "ledger-mode";
ename = "ledger-mode";
- version = "20190317.912";
+ version = "20190605.1535";
src = fetchFromGitHub {
owner = "ledger";
repo = "ledger-mode";
- rev = "c59bbfcc3274d113dec68121786546979f33dad0";
- sha256 = "0p7dp31jlia1qdz15lqqzaf8laa847qcsgn5p79nl82kbzkxvq13";
+ rev = "3fe6662d562c70e8440ba108b18b95b0e84928be";
+ sha256 = "0ah89dbssgp53y9sm9iwkwbdwh5kma3pazq2hz6f35hqmxfw3v3r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1549048b6f57fbe9d1f7fcda74b78a7294327b7b/recipes/ledger-mode";
@@ -58935,6 +60054,36 @@
license = lib.licenses.free;
};
}) {};
+ leetcode = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , graphql
+ , lib
+ , melpaBuild
+ , request-deferred
+ , spinner }:
+ melpaBuild {
+ pname = "leetcode";
+ ename = "leetcode";
+ version = "20190505.914";
+ src = fetchFromGitHub {
+ owner = "kaiwk";
+ repo = "leetcode.el";
+ rev = "7bfa00954a5fcaf05b753c656c0b4c35ed73daf2";
+ sha256 = "1z7k2sbx8lpwj61wqlj0037h457fgfbg697zfyakvbkvlw4aqlr6";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1f35b9b63f3f04dfca7c5fe62d3530b47006d8f/recipes/leetcode";
+ sha256 = "094klmrh2adj9fcpykswdbbxm714cfws1lqgz64b7gdf82m5nm8x";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs graphql request-deferred spinner ];
+ meta = {
+ homepage = "https://melpa.org/#/leetcode";
+ license = lib.licenses.free;
+ };
+ }) {};
legalese = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -59279,12 +60428,12 @@
melpaBuild {
pname = "libgit";
ename = "libgit";
- version = "20190323.1055";
+ version = "20190419.523";
src = fetchFromGitHub {
owner = "magit";
repo = "libegit2";
- rev = "f80d380156a1ba2a9caf7e964cb96acccde8b514";
- sha256 = "0azq7ni5z2fpl43s63zalnf2n3y55dsq4dp1v2yhq9j6sm5ds1di";
+ rev = "d506a754e26ca42c028bf33315a4e227bbcba148";
+ sha256 = "0ajw02213a88gkcqafy8v8872q9b6g920dbjgfm4knndw4ywsrp6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/993a5abe3a9e8b160f0d68283eeca6af033abc79/recipes/libgit";
@@ -59330,12 +60479,12 @@
melpaBuild {
pname = "libmpdel";
ename = "libmpdel";
- version = "20190124.614";
+ version = "20190426.2228";
src = fetchFromGitHub {
owner = "mpdel";
repo = "libmpdel";
- rev = "a0100e020347ccc319ec18c687353dc521c64328";
- sha256 = "0vm4j5n2h74c0kyn61lx9fbxj39gvd22yh7a3grbcp1i94wkjm8x";
+ rev = "38633ef7a1a40740d1a9528c4f0f0d40d489d9fe";
+ sha256 = "1fk4irsx916q81qpy6d6iarg8q30r1xm9syz63i8pfdf08l6wphj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/libmpdel";
@@ -59408,16 +60557,16 @@
melpaBuild {
pname = "line-reminder";
ename = "line-reminder";
- version = "20190407.809";
+ version = "20190516.2225";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "line-reminder";
- rev = "9de2c301f433453dc0ff06e7c78f580dd6f5314f";
- sha256 = "1cza4bi1plw3r4j2bxkm4w57db9nxvcf3p8xfvicipsv556k934r";
+ rev = "9ba13659dd831e7c62230baadb079ecc370a8aa9";
+ sha256 = "0vibay4ia6jxjas7a2if20w72dpmb3k3pr4n6msxy3fzl8dz2qxx";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/456f760f7f7d4151e18f08b2f1154c5880423b21/recipes/line-reminder";
- sha256 = "0kvqilg5fnr3qb7nwjf4j5ydm1lp4m06ss81i0bq2c6bv74zfcf1";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/line-reminder";
+ sha256 = "0cm9cv7ak1ibm68d2xrz26smh80g79dxjlwxj5qd9zc3yjyksdvi";
name = "recipe";
};
packageRequires = [ cl-lib emacs ];
@@ -59783,12 +60932,12 @@
melpaBuild {
pname = "lispy";
ename = "lispy";
- version = "20190404.822";
+ version = "20190528.206";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "lispy";
- rev = "18557185e2ed71502fd96ee7a176ddec7df2e626";
- sha256 = "13vnaqv4r50bjlyppxapg8pp6mc4ql0c5g2xkmmfklqagy2lja65";
+ rev = "73fd06518e6a023c9d58562f3d8016f8862bb161";
+ sha256 = "0maxwmp3kxx9wlc9h4c1gl862q1a5vi284xddb7kdl74mjk2kdmr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy";
@@ -60170,6 +61319,32 @@
license = lib.licenses.free;
};
}) {};
+ live-preview = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "live-preview";
+ ename = "live-preview";
+ version = "20190415.1514";
+ src = fetchFromGitHub {
+ owner = "lassik";
+ repo = "emacs-live-preview";
+ rev = "0229cc4b352204d9e24a0f5a062f0212b5344c58";
+ sha256 = "13rhi83ahqklsr2jnmfdvs3rzrizgbw8hs2i6rf2wfq90srd1m39";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4f928dd7c043fba36a48f0bb31693f0ec67d3ec/recipes/live-preview";
+ sha256 = "17sayv5l3ihhs370c1qg6377rkph0ailkh1ara1xpj40ljjf158j";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/live-preview";
+ license = lib.licenses.free;
+ };
+ }) {};
live-py-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -60178,12 +61353,12 @@
melpaBuild {
pname = "live-py-mode";
ename = "live-py-mode";
- version = "20190330.1041";
+ version = "20190601.1757";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
- rev = "63140187ba2b68c2c55d91aa7a07b5c5d15422d9";
- sha256 = "0arhhl684p0nhxhc53sbhcc1rmv3v107s5j0ymwnfa4rnyahz2ii";
+ rev = "cc7ca67d2d87dc14edcb624a4872188b333ed84c";
+ sha256 = "11mmq49l7a0538f5wxvx3phhq3glig4wz4ag3zicjc56sghsx8l8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode";
@@ -60385,12 +61560,12 @@
melpaBuild {
pname = "load-relative";
ename = "load-relative";
- version = "20170526.310";
+ version = "20190601.521";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-load-relative";
- rev = "738896e3da491b35399178ed2c6bc92cc728d119";
- sha256 = "1rpy5mfncncl6gqgg53d3g25g1700g4b9bivd4c0cfcv5dbxhp73";
+ rev = "dbcd7cbcca6503ef93f4b8d19bf7a9efd7f6bf9b";
+ sha256 = "010f2mhvlzkxarw298850khqc6srzb01l2vay0jsp46dh3jfmdhf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f052f201f7c308325c27cc2423e85cf6b9b67b4e/recipes/load-relative";
@@ -60734,6 +61909,32 @@
license = lib.licenses.free;
};
}) {};
+ lolcat = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "lolcat";
+ ename = "lolcat";
+ version = "20190527.445";
+ src = fetchFromGitHub {
+ owner = "xuchunyang";
+ repo = "lolcat.el";
+ rev = "4855e587a3b9681c077dac4b9f166dd860f439a4";
+ sha256 = "0nbrc3wjmmy70ggwmzagkh5j1my7x6y67fyqgddkdrbnw543gly0";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38e720f524b23b5742764186a695d143f983e179/recipes/lolcat";
+ sha256 = "044y0s1wiwjwfw58nhx5zvrli527nim3d81dix2h60d8qwx0566a";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/lolcat";
+ license = lib.licenses.free;
+ };
+ }) {};
lolcode-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -60922,12 +62123,12 @@
melpaBuild {
pname = "lsp-haskell";
ename = "lsp-haskell";
- version = "20190328.2248";
+ version = "20190602.125";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-haskell";
- rev = "33e3ac438338b0a78971cd26aa919482d290c51b";
- sha256 = "1ihc6djxsdrd0q9f79bs0qwxxhw3bnw1kxw2rq92drfnypqbiqcq";
+ rev = "8f2dbb6e827b1adce6360c56f795f29ecff1d7f6";
+ sha256 = "00j6d5rpsi7h5jz54zpjmbpg38fda4xy67xc4x67r834493ldzlq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-haskell";
@@ -60982,12 +62183,12 @@
melpaBuild {
pname = "lsp-java";
ename = "lsp-java";
- version = "20190405.1133";
+ version = "20190604.902";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-java";
- rev = "311a0747e6d54acf1b9b14d5c1f967e6fcbb97c5";
- sha256 = "0p0j2rb44f4v3mnhs3633xwprxa3ya6i7bzdvrz8r89ccrv3zmig";
+ rev = "15024929dd2ea6aa6d302eaf5e5b31cb4b7b0458";
+ sha256 = "0ps8hvjy7kv1bbnpbmymn4aid27965jjl5s324vi5qav08qidpq5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c03cb07862c5f35487fb4fb3cc44623774724717/recipes/lsp-java";
@@ -61045,29 +62246,65 @@
, fetchurl
, ht
, lib
+ , markdown-mode
, melpaBuild
, spinner }:
melpaBuild {
pname = "lsp-mode";
ename = "lsp-mode";
- version = "20190407.1213";
+ version = "20190606.48";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-mode";
- rev = "ab418329df23590212ecfee313791c6c551223e1";
- sha256 = "0pwfpcdn2ijvpsm3i2kgk6r8m9f297xsvlz5x1fa57b4002j8vzl";
+ rev = "25ef48875326c073e2d46d0a4b38617331fc3898";
+ sha256 = "1rx10z3id8ln8jmq2akp0jwjbzijf94qkwwwz1ga7mp5p2cz5xar";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-mode";
sha256 = "0cklwllqxzsvs4wvvvsc1pqpmp9w99m8wimpby6v6wlijfg6y1m9";
name = "recipe";
};
- packageRequires = [ dash dash-functional emacs f ht spinner ];
+ packageRequires = [
+ dash
+ dash-functional
+ emacs
+ f
+ ht
+ markdown-mode
+ spinner
+ ];
meta = {
homepage = "https://melpa.org/#/lsp-mode";
license = lib.licenses.free;
};
}) {};
+ lsp-origami = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , lsp-mode
+ , melpaBuild
+ , origami }:
+ melpaBuild {
+ pname = "lsp-origami";
+ ename = "lsp-origami";
+ version = "20190331.1023";
+ src = fetchFromGitHub {
+ owner = "emacs-lsp";
+ repo = "lsp-origami";
+ rev = "a7fb34006bb857577d0ded48a961a86a0d71b3b5";
+ sha256 = "1pgzvqwfygh6rb0i2q743bd1hjsc0g2fmm3i6w0nswhxxav59ak3";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68b7cf8ce2eb256db9affb2126e895aa5ad1db15/recipes/lsp-origami";
+ sha256 = "0pzccbglwwv73x3iyfidiwhwfs1dd9krvyjyqkbl5w734z3aaqqk";
+ name = "recipe";
+ };
+ packageRequires = [ lsp-mode origami ];
+ meta = {
+ homepage = "https://melpa.org/#/lsp-origami";
+ license = lib.licenses.free;
+ };
+ }) {};
lsp-p4 = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -61094,6 +62331,62 @@
license = lib.licenses.free;
};
}) {};
+ lsp-pyre = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , lsp-mode
+ , melpaBuild }:
+ melpaBuild {
+ pname = "lsp-pyre";
+ ename = "lsp-pyre";
+ version = "20190405.2035";
+ src = fetchFromGitHub {
+ owner = "jra3";
+ repo = "lsp-pyre";
+ rev = "e177b8f5efd1a955b5753aeb5d1894e6d21be35a";
+ sha256 = "0g9vijpq7n38b7rvgbshh4s46m1387d7k2lcvy4md17sak5ivxrg";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b243c6ab0a441531e02dc8fdd88c023ba505d25/recipes/lsp-pyre";
+ sha256 = "1v8yx062cv5wmpg3lalah5cy8hvhslvyrd4f3185gmc0ynz71fpi";
+ name = "recipe";
+ };
+ packageRequires = [ lsp-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/lsp-pyre";
+ license = lib.licenses.free;
+ };
+ }) {};
+ lsp-python-ms = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , json ? null
+ , lib
+ , lsp-mode
+ , melpaBuild
+ , python ? null }:
+ melpaBuild {
+ pname = "lsp-python-ms";
+ ename = "lsp-python-ms";
+ version = "20190421.1632";
+ src = fetchFromGitHub {
+ owner = "emacs-lsp";
+ repo = "lsp-python-ms";
+ rev = "427891baef868c22ae1c5702c657c41d23655e91";
+ sha256 = "1mx913q5mgrfifd6bskjg5a66mn9474fwbf73d95db1s3ydfpimy";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd67aefa5a6df2d1388a7516e529e388615c8fe0/recipes/lsp-python-ms";
+ sha256 = "1aifydzz7jv3bf9qfxj37isq40wirfgvd9h40cb5c9wq4v44j8ps";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs json lsp-mode python ];
+ meta = {
+ homepage = "https://melpa.org/#/lsp-python-ms";
+ license = lib.licenses.free;
+ };
+ }) {};
lsp-scala = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -61104,12 +62397,12 @@
melpaBuild {
pname = "lsp-scala";
ename = "lsp-scala";
- version = "20190116.1332";
+ version = "20190604.537";
src = fetchFromGitHub {
owner = "rossabaker";
repo = "lsp-scala";
- rev = "b68820cc7aaa9c4f818c4f7999188c20655c3be3";
- sha256 = "1zq2kjsdf88wi4i2my14hw8am9q5dpyfryak1mvp2hpy661hmy7k";
+ rev = "6d15f76f8f5267cbed6d64d583a9fc551d889f64";
+ sha256 = "115amdnvq0righ0ifqr64hxac05jhgpy31cx0bdmd2za9s5qpgg0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fd494da0c0c2e2e58afc26d8e79aeeea41c6ee09/recipes/lsp-scala";
@@ -61163,12 +62456,12 @@
melpaBuild {
pname = "lsp-treemacs";
ename = "lsp-treemacs";
- version = "20190328.2351";
+ version = "20190529.1226";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-treemacs";
- rev = "5b3f0d3242b272cc31b7620766ff7a7a3d997f20";
- sha256 = "1q7qn1m4qy70qghiq3ac3ri69hq3g0kfxp4sf3bzssh9v2yvxwcl";
+ rev = "1eb072aef80de74063e8da513e4a09abc304476c";
+ sha256 = "0c6xik4ywybg6vkhbhhwkh332wml400w581cg432ba3vlrk9rlhs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b9996b16461fe7c16b315ef30aa6b75c724f8fef/recipes/lsp-treemacs";
@@ -61193,12 +62486,12 @@
melpaBuild {
pname = "lsp-ui";
ename = "lsp-ui";
- version = "20190328.2057";
+ version = "20190523.821";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-ui";
- rev = "d4088c7471bdb3ba95f2fb0b60277ad95b34a25f";
- sha256 = "0xmfxv68s0m0pwlbs05vx3y94pdwfyswqpzzji714nqzx1ixfqyb";
+ rev = "3ccc3e3386732c3ee22c151e6b5215a0e4c99173";
+ sha256 = "1k51lwrd3qy1d0afszg1i041cm8a3pz4qqdj7561sncy8m0szrwk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b7c78c9b07ede9949d14df74b188d4c1a3365196/recipes/lsp-ui";
@@ -61689,12 +62982,12 @@
melpaBuild {
pname = "magik-mode";
ename = "magik-mode";
- version = "20190305.1229";
+ version = "20190527.656";
src = fetchFromGitHub {
owner = "roadrunner1776";
repo = "magik";
- rev = "743c5160ff2993534014862538961515047ed357";
- sha256 = "0sggdkp01ryknmfv828lqc5lkpks2vlqrqc0hblynyxs8w0azmf8";
+ rev = "cbe399fb9df03f93e9c426dcbd5de4f10c0694b4";
+ sha256 = "1lv7v3ahqb9flb8kwn09z6gl6fjn4gikcn5bjkd94p15kbdl5lc0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/291cce8e8e3475348b446ba38833eb1e37d4db65/recipes/magik-mode";
@@ -61720,16 +63013,16 @@
melpaBuild {
pname = "magit";
ename = "magit";
- version = "20190405.1004";
+ version = "20190605.717";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "e19833d9d639221ed78f310b800b464db5600a3f";
- sha256 = "05fmzpqzsfa22ghmbgkirii64i5473463nniik5ck51j5w3z1vd7";
+ rev = "0fb3f3e74d331e29ce272586a61042744fabfe1f";
+ sha256 = "1xgndzw46ya5kan08fasqf0zanc7dax5mm03946hc7pypibp5a8z";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ac8feccfa0f4eb5bda2ef561a6be66ba145c00e0/recipes/magit";
- sha256 = "03iv74rgng5fcy3qfr76hiy0hj6x2z0pis1yj8wm1naq5rc55hjn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f963950d69a944443d9b6a1658799f7860d0f93/recipes/magit";
+ sha256 = "13fipghvlzbx2d4dwxmm1hhnnd28davdp8rjqhq8g4g0lcn3h8b1";
name = "recipe";
};
packageRequires = [ async dash emacs git-commit transient with-editor ];
@@ -61747,12 +63040,12 @@
melpaBuild {
pname = "magit-annex";
ename = "magit-annex";
- version = "20190217.2127";
+ version = "20190420.1941";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-annex";
- rev = "2b6b51c2f295ffc724bac8e8fde9b161972f9cfe";
- sha256 = "0v5saypcc5s6z1sa6hc3hmigzh7bnmp3247n2a9g259w21f7bcwa";
+ rev = "c8648ebe70898cd3d62599643ad191c3a9b9831a";
+ sha256 = "1kjxsmkhvwjcqbbmw9128qhnrnvvl8q0nfys5n358ckzyxf6a5ph";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex";
@@ -61765,6 +63058,35 @@
license = lib.licenses.free;
};
}) {};
+ magit-diff-flycheck = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , flycheck
+ , lib
+ , magit
+ , melpaBuild
+ , seq }:
+ melpaBuild {
+ pname = "magit-diff-flycheck";
+ ename = "magit-diff-flycheck";
+ version = "20190523.2251";
+ src = fetchFromGitHub {
+ owner = "ragone";
+ repo = "magit-diff-flycheck";
+ rev = "ad58efa312d708f25661dfcc2a7f83a833cca328";
+ sha256 = "0h0bg8vm8rf4rppx2gpxjcklnjfnbxv0c5n8fia2a3f9qaz4m0as";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d28982425519157a6116c077fbc4be7cfa53be/recipes/magit-diff-flycheck";
+ sha256 = "1gnjvhxy48ah84cglq6653wgb07g0gry0672334ad3cwc5b45kdk";
+ name = "recipe";
+ };
+ packageRequires = [ emacs flycheck magit seq ];
+ meta = {
+ homepage = "https://melpa.org/#/magit-diff-flycheck";
+ license = lib.licenses.free;
+ };
+ }) {};
magit-filenotify = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -61939,12 +63261,12 @@
melpaBuild {
pname = "magit-lfs";
ename = "magit-lfs";
- version = "20170312.1524";
+ version = "20190504.1209";
src = fetchFromGitHub {
owner = "Ailrun";
repo = "magit-lfs";
- rev = "9897c59109ce34755cbd35eff689680351c45fba";
- sha256 = "05cy0pw5lcyzcqxycvwbw39l88405lc92x0w1lvhlbwwylpbhw2s";
+ rev = "eb5042d1c484acaae5d0787b29da5e010473bc5a";
+ sha256 = "1hpbnd0w05s0ihzpn37swhb1465h3lz3vnzzqy4w1gya5v94mcn7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/magit-lfs";
@@ -61957,6 +63279,34 @@
license = lib.licenses.free;
};
}) {};
+ magit-libgit = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , libgit
+ , magit
+ , melpaBuild }:
+ melpaBuild {
+ pname = "magit-libgit";
+ ename = "magit-libgit";
+ version = "20190419.845";
+ src = fetchFromGitHub {
+ owner = "magit";
+ repo = "magit";
+ rev = "68840e6da97fd35ac41c6f007c1c22dde62a7a6a";
+ sha256 = "17wx7bd6hvdi4pwpv9pzixffcyidyw3s0b9wpg3ipl3lkwyzngya";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0580362be495894c61b99b7efb4cfa435cc0dd72/recipes/magit-libgit";
+ sha256 = "0fi3w2f79qn3hf5rw5jp8128xbk5r0xwwwb56zcjn2na02dynfb1";
+ name = "recipe";
+ };
+ packageRequires = [ emacs libgit magit ];
+ meta = {
+ homepage = "https://melpa.org/#/magit-libgit";
+ license = lib.licenses.free;
+ };
+ }) {};
magit-org-todos = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -62158,12 +63508,12 @@
melpaBuild {
pname = "magit-tbdiff";
ename = "magit-tbdiff";
- version = "20190219.2015";
+ version = "20190506.1936";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-tbdiff";
- rev = "48075990d10f7947191c24050e7012d99759f191";
- sha256 = "10nbkc49d15z9xzlskbc8fv4zckscini4favj8m2ikgfxdyd35h1";
+ rev = "fcde2e718974acb2b8905b623e0eca74c58b6b0f";
+ sha256 = "0ks2fyiwxg4zqhplbysb9wv82nrd72ihqi911hf7m48a72w7assx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ad97eea866c8732e3adc17551d37a6d1ae511e6c/recipes/magit-tbdiff";
@@ -62191,12 +63541,12 @@
melpaBuild {
pname = "magit-todos";
ename = "magit-todos";
- version = "20190114.650";
+ version = "20190508.57";
src = fetchFromGitHub {
owner = "alphapapa";
repo = "magit-todos";
- rev = "14e5347c98f42166ad7061b8663d368bb0d4fba4";
- sha256 = "1czaf38w0z1pkjwmlhxrln9nmd3zp1j7gmhaf82bw15d8xcl4kbh";
+ rev = "6d590872dab914908b539c54da2c68dc75491e93";
+ sha256 = "01z90l079j6pxnxsr4kwf0wr7hw4ssnrngxndv7lg2ra8i5a1qpv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b4544ab55d2c8b8c3b7eb739b9fb90ebb246d68b/recipes/magit-todos";
@@ -62249,12 +63599,12 @@
melpaBuild {
pname = "magithub";
ename = "magithub";
- version = "20190118.1347";
+ version = "20190512.1616";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "magithub";
- rev = "18e66c284af911f3e3178550384d050536db42ac";
- sha256 = "00r2fp6zbs7321ixdbrh8fj3s6b1bg85hcc2jim6k8pdvssavz1x";
+ rev = "9fb9c653d0dad3da7ccff3ae321fa6e54c08f41b";
+ sha256 = "047dyiysdhf81qfcmmaxzixgxy35fjm9wyhwwv9630s5b83fh094";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e555b46f5de7591aa8e10a7cf67421e26a676db8/recipes/magithub";
@@ -63277,12 +64627,12 @@
melpaBuild {
pname = "math-symbol-lists";
ename = "math-symbol-lists";
- version = "20190102.1031";
+ version = "20190605.1358";
src = fetchFromGitHub {
owner = "vspinu";
repo = "math-symbol-lists";
- rev = "e15ec26a010b4f38111bc150c51ecb1a319f6bdb";
- sha256 = "11jk0xdlc8zk2way1d85n2khmydzzvpjhh8bbjbdsv8d1z3j9yfh";
+ rev = "dc7531cff0c845d5470a50c24d5d7309b2ced7eb";
+ sha256 = "094m21i9rns6m59cmhxcivxxafbg52w8f8na4y3v47aq67zmhhqm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/math-symbol-lists";
@@ -63645,12 +64995,12 @@
melpaBuild {
pname = "meghanada";
ename = "meghanada";
- version = "20190225.625";
+ version = "20190525.2248";
src = fetchFromGitHub {
owner = "mopemope";
repo = "meghanada-emacs";
- rev = "7ea4885b79224c024f5cde4bb7d6b98c77b84eda";
- sha256 = "0zigc6f02qdv8fj5wfpw56dw1glk3q204qxyipazsv6pm62v0y01";
+ rev = "24813cf364f1c857c2ee412d0a088f0ceff53842";
+ sha256 = "1ripap7is2amk3i2mavwiiv5mfsx9k3gxpy9nyaz58pzgvyjqplc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4c75c69b2f00be9a93144f632738272c1e375785/recipes/meghanada";
@@ -63670,12 +65020,12 @@
melpaBuild {
pname = "melancholy-theme";
ename = "melancholy-theme";
- version = "20190406.1618";
+ version = "20190503.1920";
src = fetchFromGitHub {
owner = "techquila";
repo = "melancholy-theme";
- rev = "a5fb97b52c56c612474fec4ec45472fe13bd4c20";
- sha256 = "0syx0h8930j58bky14wnrba8iafzi3hdsb11kvsb48vdqv2minrq";
+ rev = "37e7f9a83995d9a53cd4343843139660fa0ca59d";
+ sha256 = "0yjfmb1wcg2dvr76r58fg2a1s2g2zw3ijkjjaa6mpf0h4ymyx2s3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8f708d1300d401697c099709718fcb70d5db1f/recipes/melancholy-theme";
@@ -63803,12 +65153,12 @@
melpaBuild {
pname = "mentor";
ename = "mentor";
- version = "20190407.1142";
+ version = "20190511.938";
src = fetchFromGitHub {
owner = "skangas";
repo = "mentor";
- rev = "467c531f0c40ca924b3bb971e264727f7332e681";
- sha256 = "1hjfw59wlkkqff2r7m81hcin6px6sdw8bfh2mnz0cbfs1gw2y15i";
+ rev = "b5e441b7dc077d5532a3818b5441e52baefad839";
+ sha256 = "1xrhg1jwmzlcqdk2w92s7ghbma1pfzjc48akl3d2cixxz3ha2ca2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/083de4bd25b6b013a31b9d5ecdffad139a4ba91e/recipes/mentor";
@@ -63828,12 +65178,12 @@
melpaBuild {
pname = "merlin";
ename = "merlin";
- version = "20190323.230";
+ version = "20190531.249";
src = fetchFromGitHub {
owner = "ocaml";
repo = "merlin";
- rev = "1ab2b90f4508855ac0caab51a6a5dad3e48cdb00";
- sha256 = "0cn46b2im7k2j3p8r34pmqmdrxxwls14l21mjjfll2fc329s3shr";
+ rev = "800c793870c7ff3b00a6817ab16b03628c6495eb";
+ sha256 = "0yx92lybw685ay5qd8jpdxwfdjmhhbrpkpi94gysq9bmh0kqhixr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9338298a79b7f2d654df90b0f553aeed1428de13/recipes/merlin";
@@ -63873,6 +65223,33 @@
license = lib.licenses.free;
};
}) {};
+ mermaid-mode = callPackage ({ emacs
+ , f
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mermaid-mode";
+ ename = "mermaid-mode";
+ version = "20190503.1026";
+ src = fetchFromGitHub {
+ owner = "abrochard";
+ repo = "mermaid-mode";
+ rev = "70545a46f114c4d2295ef86c5f5983bb8b2ae177";
+ sha256 = "1hc7ryz9jzpny6lr40fdpxj88ai5833ifsca3xzqh0agifv394xp";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8729575400003db47638b4c45c425608e15c333d/recipes/mermaid-mode";
+ sha256 = "1r9dv10p2bahygz1f151bp481289b184d80jbh575pdmlxkqd79f";
+ name = "recipe";
+ };
+ packageRequires = [ emacs f ];
+ meta = {
+ homepage = "https://melpa.org/#/mermaid-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
meson-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -63931,12 +65308,12 @@
melpaBuild {
pname = "meta-presenter";
ename = "meta-presenter";
- version = "20190318.859";
+ version = "20190414.1020";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "meta-presenter";
- rev = "3d8c762a7dd7ac39032a3601bd6a717f206e670d";
- sha256 = "0r9zzmglmkkmxcqh0pdlg279mpd524k2rwn56kyvj5i3i8zw9rpl";
+ rev = "704a2e0f2a3e6bb72578e00eccb772dfcf0670fc";
+ sha256 = "1hka4c87zdgqjawlmsfd7wi6rbc03qfp996ydrj84kz8saq7gf89";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b73e9424515b3ddea220b786e91c57ee22bed87f/recipes/meta-presenter";
@@ -64060,12 +65437,12 @@
melpaBuild {
pname = "mew";
ename = "mew";
- version = "20190307.1729";
+ version = "20190414.2038";
src = fetchFromGitHub {
owner = "kazu-yamamoto";
repo = "Mew";
- rev = "0dacffb71bd0c8aa7e104658833c1d50776eb3a4";
- sha256 = "00qq5aysjxv3a1b0x6k5idxvam9g5jzbrmiy25x32wih6a6abg33";
+ rev = "70d6da044a4f6ac8e40e489d4963b8a3d530b8a9";
+ sha256 = "0j569nski5f3z26qa1scpzbsx3xdvmw9sxhm1m9wj3ac5kvgk9hn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew";
@@ -64085,12 +65462,12 @@
melpaBuild {
pname = "mexican-holidays";
ename = "mexican-holidays";
- version = "20160109.1342";
+ version = "20190505.1945";
src = fetchFromGitHub {
owner = "sggutier";
repo = "mexican-holidays";
- rev = "43ced1f9e40a04be6927d1a1be64060f9be4f5c5";
- sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py";
+ rev = "663633be1d693f6081d7d000e05d15ddbf71aa10";
+ sha256 = "09b0292d87xm5mrhfhv7j11ljl4j9hv8h5dibzrrlh1b3vsg2xkj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/mexican-holidays";
@@ -64137,12 +65514,12 @@
melpaBuild {
pname = "mhc";
ename = "mhc";
- version = "20190116.2146";
+ version = "20190505.2333";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "mhc";
- rev = "a0a7e01587c47b11f4aa87ac977ca43298a75570";
- sha256 = "1wxyp4snkarbbrqb1a28hdf286cwf08v0fbi9pl9mw4q7sn598s2";
+ rev = "88b5f938e57c28e9e2db202770f952fc0ecba945";
+ sha256 = "13d31wz7wyh777isimxlkdimj3vbl54bh0f00p15a8xlrs2pn7f3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba/recipes/mhc";
@@ -64907,12 +66284,12 @@
melpaBuild {
pname = "mocha-snippets";
ename = "mocha-snippets";
- version = "20170103.2127";
+ version = "20190417.1231";
src = fetchFromGitHub {
owner = "cowboyd";
repo = "mocha-snippets.el";
- rev = "e054137bd78f0d236e983874da1f345d30a71816";
- sha256 = "0lxc5zhb03jpy48ql4mn2l35qhsdwav4dkxyqim72b7c75cy1cml";
+ rev = "361a3809f755577406e109b9e44d473dfa7c08e0";
+ sha256 = "0xcybq0cwd0c33bi1jf7h098a4anc4gkj3m1c97gc8mz9x4fjksy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/93c472e3d7f318373342907ca7253253ef12dab8/recipes/mocha-snippets";
@@ -64987,12 +66364,12 @@
melpaBuild {
pname = "mode-icons";
ename = "mode-icons";
- version = "20180910.804";
+ version = "20190520.2247";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "mode-icons";
- rev = "26138d825cba7e6bd882707a909505d5536acb9b";
- sha256 = "1z62g5dhv36x5an89za8h5vdab0ss7af13p42kjnjrs54f50pv9f";
+ rev = "33aad72386952308c69bb98956b6735b23628501";
+ sha256 = "17xbqwdk5kl3z9yr684xmq3d7gapwpzlia4yxcx1d3dz80wprmhm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mode-icons";
@@ -65238,12 +66615,12 @@
melpaBuild {
pname = "monky";
ename = "monky";
- version = "20190402.825";
+ version = "20190502.717";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "monky";
- rev = "bb2fbb43c9b1894160ca47560338a0be30cc0233";
- sha256 = "0ai8gcrd66jrhxmmwysfaqxpl0347qd9xdqys82284528hd89ms9";
+ rev = "df63632ad58704f6ee85dfcb275bbcc5e1edfbae";
+ sha256 = "09fi8fxyl50fr8wdd61wacfn3xishcrsff3dag99qdbvbxakp46m";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc/recipes/monky";
@@ -65307,6 +66684,31 @@
license = lib.licenses.free;
};
}) {};
+ monokai-pro-theme = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "monokai-pro-theme";
+ ename = "monokai-pro-theme";
+ version = "20190425.1603";
+ src = fetchFromGitHub {
+ owner = "belak";
+ repo = "emacs-monokai-pro-theme";
+ rev = "747556c0cb38993c83ea8b6665869f42249d885a";
+ sha256 = "1xfc3v1bwxpn3j42h6b1vy6knjrlmskq95c9vgdlia9ffz5pg7r3";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d5fbd76a40d84dd2d91a1022f59c15e6db6b90a/recipes/monokai-pro-theme";
+ sha256 = "05ya47cmry2fprssjx3adwij9zd218rcnikpw9hximwlklmzjvb3";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/monokai-pro-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
monokai-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -65383,6 +66785,58 @@
license = lib.licenses.free;
};
}) {};
+ mood-line = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mood-line";
+ ename = "mood-line";
+ version = "20190606.247";
+ src = fetchFromGitLab {
+ owner = "jessieh";
+ repo = "mood-line";
+ rev = "670f2c0c39e72fed57be2bd65325a65bca166396";
+ sha256 = "18jwca84c72jahmx7lwilnihrlw6s6ni5d7qkj8n6q7ibka3cffv";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b10524f105943648ecf52f007f363b7b5534865e/recipes/mood-line";
+ sha256 = "0wj8rdgsqsdd2ps3w7sj8a7yhhz0iczwgnalalzws42x8s9yn4j0";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mood-line";
+ license = lib.licenses.free;
+ };
+ }) {};
+ mood-one-theme = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mood-one-theme";
+ ename = "mood-one-theme";
+ version = "20190422.1424";
+ src = fetchFromGitLab {
+ owner = "jessieh";
+ repo = "mood-one-theme";
+ rev = "bd41e991e2280102d538eccc508d6a4bb6a651ca";
+ sha256 = "0h90z0l9968mpi7qbwjjp5jq41kxjfjcr2ydfadsry5zj1pzk95i";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44fbe8c54e4052e6c38849a12425db8f7c04fcc1/recipes/mood-one-theme";
+ sha256 = "1ar3vsc0d838m2k54f4v8a4mc0g21qa9rmgr2wb763vb7vpcznmi";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mood-one-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
moody = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -65626,12 +67080,12 @@
melpaBuild {
pname = "move-dup";
ename = "move-dup";
- version = "20180531.537";
+ version = "20190408.546";
src = fetchFromGitHub {
owner = "wyuenho";
repo = "move-dup";
- rev = "24e5b6d7222cbe2437c602f1af37d5807569961a";
- sha256 = "0i78cv3xdchzak8xxm7xm1fw4z6ww3v402cl2rwyg4363fx00f7y";
+ rev = "19f1c075d939084279b190c38412b4cfda96840d";
+ sha256 = "0rb9x00dygf0v5xk6gljdn0lvkgzyl129b5i4jpxz0ylccckd0xn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3ea1f7f015a366192492981ff75672fc363c6c18/recipes/move-dup";
@@ -65885,12 +67339,12 @@
melpaBuild {
pname = "mpdel";
ename = "mpdel";
- version = "20190124.621";
+ version = "20190428.218";
src = fetchFromGitHub {
owner = "mpdel";
repo = "mpdel";
- rev = "ad63914b95b5655b873341a778b98896d8de5ad8";
- sha256 = "1znv7mbdjhz6vggzyj7ys0014gsvqd16b0hgvngbhjdrk8cm5a5q";
+ rev = "a2da2f2fe2357641909514da788f7c6cbe5801f4";
+ sha256 = "0pyyvbzskr44dxbmlp3y0r6s459fd51cvwjmnjaqxfxflr5v891g";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/mpdel";
@@ -66021,12 +67475,12 @@
melpaBuild {
pname = "ms-python";
ename = "ms-python";
- version = "20190318.1929";
+ version = "20190412.2216";
src = fetchFromGitHub {
owner = "xhcoding";
repo = "ms-python";
- rev = "5412bb664b5c8d7fca1a98ccb50ffc5a2592a75c";
- sha256 = "1wp1vhll9wsr5wpq6d2gjzc9nwvn6n61x80kmprr7m1mr6zav9bk";
+ rev = "d95ac8f1633764cdb4bb43bf44c2eb6b225f9f93";
+ sha256 = "0z1i556y51fhy2c6n6zdmwzbl7czp99v1szaxhb53z96s0d4nqmc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6373142d80e84db8dec47abd0cdc562352b16681/recipes/ms-python";
@@ -66050,12 +67504,12 @@
melpaBuild {
pname = "msvc";
ename = "msvc";
- version = "20171225.738";
+ version = "20190426.345";
src = fetchFromGitHub {
owner = "yaruopooner";
repo = "msvc";
- rev = "dfc529aa6da8b46b0a0c7db9a0e5e9bc33ab1fb3";
- sha256 = "19n9an0nznwqw3ml022i6vidqbrgxf4yff0nbvvcb91ppc1saf40";
+ rev = "c3b86fb517e95c9ae4d6b851984f4f4ed1864c06";
+ sha256 = "0mn12za94ciqfagia3ga7azl86abxa41191vlczh8kwspwci4x1h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/69939b85353a23f374cab996ede879ab315a323b/recipes/msvc";
@@ -66120,6 +67574,31 @@
license = lib.licenses.free;
};
}) {};
+ mu2tex = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mu2tex";
+ ename = "mu2tex";
+ version = "20190519.2203";
+ src = fetchFromGitHub {
+ owner = "cdominik";
+ repo = "mu2tex";
+ rev = "bfd1d72d52139e58d8a74a72a680773f3403bfd1";
+ sha256 = "1f1yqlg9iynkq4mmwgr87fv02d5bcza3nhdbid4w6jlgqyxzwvi6";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e55964077f23a9d3ec4b53cb5add6d7166f385e0/recipes/mu2tex";
+ sha256 = "1h146xscvlkjgp4wqw11cb1z6gjr1s0ysamcz4ii5gfv82rrjgyc";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/mu2tex";
+ license = lib.licenses.free;
+ };
+ }) {};
mu4e-alert = callPackage ({ alert
, emacs
, fetchFromGitHub
@@ -66131,12 +67610,12 @@
melpaBuild {
pname = "mu4e-alert";
ename = "mu4e-alert";
- version = "20180304.2246";
+ version = "20190417.2258";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "mu4e-alert";
- rev = "96a293b28646f4620e257f24748becc4a06843cd";
- sha256 = "01rgsd958shph01ialk0lp3snxqydvjkiik170jshfls1jric1di";
+ rev = "91f0657c5b245a9de57aa38391221fb5d141d9bd";
+ sha256 = "0qr5ww2xj8dibglh175qcq4bdgzs8lylv28hkbijykjshr3pkzn9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mu4e-alert";
@@ -66184,12 +67663,12 @@
melpaBuild {
pname = "mu4e-jump-to-list";
ename = "mu4e-jump-to-list";
- version = "20190129.1548";
+ version = "20190419.742";
src = fetchFromGitLab {
owner = "wavexx";
repo = "mu4e-jump-to-list.el";
- rev = "b63360eab8975acce04e803a5919abbe2daf863c";
- sha256 = "1f7vxkv60smi2zjcg3bl8l7wjhrc35980wprmiy8568lvin6afbh";
+ rev = "358bba003543b49ffa266e503e54aebd0ebe614b";
+ sha256 = "00y9nap61q1z2cdql4k9g7fgi2gdgd9iy5s5lzrd9a4agbx6r7sv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/mu4e-jump-to-list";
@@ -66228,6 +67707,32 @@
license = lib.licenses.free;
};
}) {};
+ mu4e-overview = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mu4e-overview";
+ ename = "mu4e-overview";
+ version = "20190420.2312";
+ src = fetchFromGitHub {
+ owner = "mkcms";
+ repo = "mu4e-overview";
+ rev = "eb2d1e39c77c4725a8ee36dc68917aaf7b717b46";
+ sha256 = "08mchv8q8q3mnpm69vc888jlv4iik4vlkxqpmkrsgimq1gyb80pj";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec240f0f9bc43c5abca557607b0b89a24696744e/recipes/mu4e-overview";
+ sha256 = "076lpfj6zrg2ivgbslg9whm4mci278kg45a3km7iadilwipiaxsk";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mu4e-overview";
+ license = lib.licenses.free;
+ };
+ }) {};
mu4e-query-fragments = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -66397,12 +67902,12 @@
melpaBuild {
pname = "multi-run";
ename = "multi-run";
- version = "20190401.1458";
+ version = "20190507.1649";
src = fetchFromGitHub {
owner = "sagarjha";
repo = "multi-run";
- rev = "74905979f35e06fff4046cd26542bcb1e4f08cb1";
- sha256 = "16ifp19qh5jy6vvqw2cyyym9sd810n2gdhpjl8vws2svnxrh1mba";
+ rev = "c6256b0cc2876c29faf381d8324b31b911045a27";
+ sha256 = "07nd7lwrnz9j54hq33c8ii1pipd472qfsdifg6fid7kca0rychif";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e05ad99477bb97343232ded7083fddb810ae1781/recipes/multi-run";
@@ -66957,8 +68462,7 @@
license = lib.licenses.free;
};
}) {};
- myterminal-controls = callPackage ({ cl-lib ? null
- , emacs
+ myterminal-controls = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -66966,19 +68470,19 @@
melpaBuild {
pname = "myterminal-controls";
ename = "myterminal-controls";
- version = "20190331.2104";
+ version = "20190425.2121";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "myterminal-controls";
- rev = "df144b269bc274162602e50c692be20ac9b90547";
- sha256 = "02bd47rx2ykz5hhrf1szcqz7s9r5fxz7n3hnwlqap2r6xcv6cpvk";
+ rev = "733cdd7ab4f172b6dca09720fc5ae7dbc248c822";
+ sha256 = "1z89d3dx77c4v1zz4ngn689ay6m2x04jznnbc6bdqsaanz9znwlz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4a82a45d9fcafea0795f832bce1bdd7bc83667e2/recipes/myterminal-controls";
sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2";
name = "recipe";
};
- packageRequires = [ cl-lib emacs ];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/myterminal-controls";
license = lib.licenses.free;
@@ -67152,12 +68656,12 @@
melpaBuild {
pname = "nameless";
ename = "nameless";
- version = "20180215.1421";
+ version = "20190429.502";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "Nameless";
- rev = "79d7ba8e9b8f3093e93172bdb4c5a4d31b0fa3e0";
- sha256 = "11xghz03csj5w3qfbjyr48liaxr08gl6gy73hmmrq2bl57six5n0";
+ rev = "a3a1ce3ec0c5724bcbfe553d831bd4f6b3fe863a";
+ sha256 = "0pxfn81bc8smik0qksfjbrdjkzy0cbjzbc3ik47zl2i9blmx5krv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8e4ee4dae5f32a8d445dc0cc2455c1f7075c9b3d/recipes/nameless";
@@ -67409,12 +68913,12 @@
melpaBuild {
pname = "nasm-mode";
ename = "nasm-mode";
- version = "20180711.1209";
+ version = "20190409.2042";
src = fetchFromGitHub {
owner = "skeeto";
repo = "nasm-mode";
- rev = "1d4871ef184fc5da792bccbae1ea189f876706fc";
- sha256 = "1pyawg7axx6rzcal3v0cya2jpdnsndd4af8vy60kjpwxa1sq7h2m";
+ rev = "65ca6546fc395711fac5b3b4299e76c2303d43a8";
+ sha256 = "00rv6m004hcsn71hv3p3rxmrpwajdy02qpi2ymhxx2w3r49ba562";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a832b3bd7c2f2d3cee8bcfb5421d22acf5523e/recipes/nasm-mode";
@@ -67925,12 +69429,12 @@
melpaBuild {
pname = "ng2-mode";
ename = "ng2-mode";
- version = "20181211.1610";
+ version = "20190524.1212";
src = fetchFromGitHub {
owner = "AdamNiederer";
repo = "ng2-mode";
- rev = "aea614669669b40b67484d1c7dc50bd0a3efc011";
- sha256 = "19cmv9lxkmjfi6qiblwmy4r144hfk668l4pgbcvgs72lmrg26ik4";
+ rev = "52fdfe27247548b46f6171eebaf887a90dd67463";
+ sha256 = "1g8za385clky1waba4ggi5bl2q4h26gz00lkzghn3zvxg5nbh47d";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a856ecd8aca2d9232bb20fa7019de9e1dbbb19f4/recipes/ng2-mode";
@@ -68085,12 +69589,12 @@
melpaBuild {
pname = "nim-mode";
ename = "nim-mode";
- version = "20181219.923";
+ version = "20190503.327";
src = fetchFromGitHub {
owner = "nim-lang";
repo = "nim-mode";
- rev = "a508b4b22497194bc36ffff3744c49977ecd96dc";
- sha256 = "1p7q3vw8xhqgy6d5nnn23kjc66r53z7hxlbz35nr0jcz5ysnrk65";
+ rev = "f5143f7861c686b8ae13371084eef2d3be3d687e";
+ sha256 = "0ndb9i6h425bniy8fynisdzvp4bjw61kxv9hlffck1hkb1sc94rm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dc2ccb5f24b9d55c77eaa7952a9e6a2e0ed7be24/recipes/nim-mode";
@@ -68111,12 +69615,12 @@
melpaBuild {
pname = "nimbus-theme";
ename = "nimbus-theme";
- version = "20190405.1111";
+ version = "20190513.356";
src = fetchFromGitHub {
owner = "m-cat";
repo = "nimbus-theme";
- rev = "5d957b3e8939cebd008b113c8c4d581a66aba36c";
- sha256 = "0msdb2pyr51430crcnjvsfajd9j4cbk1l09f5r8z3nqadp5df6cj";
+ rev = "ebf4b464912093f6554ab47d9e99b5f1bd537e2f";
+ sha256 = "1al9l85mn0jz1l1sp4ws1xgmmzml8yfr60na3azss6fhhgrvc9dg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0e6b456b76e2379c64a86ad844362c58146dc6/recipes/nimbus-theme";
@@ -68182,6 +69686,34 @@
license = lib.licenses.free;
};
}) {};
+ nix-haskell-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , haskell-mode
+ , lib
+ , melpaBuild
+ , nix-mode }:
+ melpaBuild {
+ pname = "nix-haskell-mode";
+ ename = "nix-haskell-mode";
+ version = "20190525.1350";
+ src = fetchFromGitHub {
+ owner = "matthewbauer";
+ repo = "nix-haskell-mode";
+ rev = "bb132b3c83552370e52bae57a126427cbc53cd09";
+ sha256 = "0fiqs2hix38g2cr3rrzqj37x1qp4pw85lyqqrl9775iliyr1np2d";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aeb879e2e8b017d3e1ccdc8d19f17d09b2ad5f1b/recipes/nix-haskell-mode";
+ sha256 = "1rygqmq01p27gbda6hgnzisng7xqf63x462a3x31ym67ivxsyqz3";
+ name = "recipe";
+ };
+ packageRequires = [ emacs haskell-mode nix-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/nix-haskell-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
nix-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -68430,12 +69962,12 @@
melpaBuild {
pname = "no-littering";
ename = "no-littering";
- version = "20190224.1309";
+ version = "20190409.454";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "no-littering";
- rev = "974f105ea17729aa77a5bf1b4d70cb6e09b4cd6a";
- sha256 = "08bgcj8n72zcyzx1qlg4pksnp6ppnzw51a57fw677bri4awny6pi";
+ rev = "99ae007ead688689b5b25a9482f98ec67663bb61";
+ sha256 = "0sg4qh9a6k1m24qamsf7ldpghjcawbdgh114gy08jnw478nf05kv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/no-littering";
@@ -68715,12 +70247,12 @@
melpaBuild {
pname = "nord-theme";
ename = "nord-theme";
- version = "20180913.1049";
+ version = "20190508.2352";
src = fetchFromGitHub {
owner = "arcticicestudio";
repo = "nord-emacs";
- rev = "c4e0b5548e2f3a149658617b33813cb115bdecfe";
- sha256 = "0am2gpk63b4cjlpdy1z2mrhq09q1hi54jqpmh2rvdvijsvp6335q";
+ rev = "9ed7b9c2d1bb68ae86d06f97d215d2883e4ff0d2";
+ sha256 = "1i5z50xdn1qbfvy394j35d5bahsay56ngj2nxl4vlf88pdh0w0a8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/31cb60069825abe3998c8b43bc9177b39a7f3659/recipes/nord-theme";
@@ -68815,11 +70347,11 @@
melpaBuild {
pname = "notmuch";
ename = "notmuch";
- version = "20190331.920";
+ version = "20190525.902";
src = fetchgit {
url = "https://git.notmuchmail.org/git/notmuch";
- rev = "8e584392dce53d322b9403306991944c5578b1f0";
- sha256 = "1yi7f2fz3bl9x2n05iv6vsdvahyyxn6520wp7hs73cq75wqc174r";
+ rev = "9300defd64acf68b8e6fa6fbd89b8050168bb63d";
+ sha256 = "09myljmmrcr4f6a93zwi8k39nndw2fmpj3g2jk2bl3ddql8x0gvl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d05fbde3aabfec4efdd19a33fd2b1297905acb5a/recipes/notmuch";
@@ -68894,12 +70426,12 @@
melpaBuild {
pname = "nova-theme";
ename = "nova-theme";
- version = "20190220.1638";
+ version = "20190520.932";
src = fetchFromGitHub {
owner = "muirmanders";
repo = "emacs-nova-theme";
- rev = "b37c4cf078a811f40e30dbb790fe26845d601cd9";
- sha256 = "1wxl6b14429kqvrm6mb2zmcxixcz7l4k8p5y408jr0yjdw3rlpki";
+ rev = "7f7d6568f9d0d49600b03b74ad0f8ae3121fab8c";
+ sha256 = "1jvrcdknirr4f85r75waajkp00bm51573a3vbydsvlkjm27698hk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/16457166c17fb1cc074a34c61e52ebc285c0eacc/recipes/nova-theme";
@@ -69295,12 +70827,12 @@
melpaBuild {
pname = "nvm";
ename = "nvm";
- version = "20171217.836";
+ version = "20190601.113";
src = fetchFromGitHub {
owner = "rejeep";
repo = "nvm.el";
- rev = "bc0a33257ec16e9f575bb6914b5949199897ada9";
- sha256 = "07fb6xxnij3nyhvf1yfv58zglawijfr0apmgx22qgaray53rp3nw";
+ rev = "4aeb672d543ce2372dcca289719092aa4c38a6cd";
+ sha256 = "0phillz5dxpvhsi9rlah4988ksx2rcgagfw5iqf5lmfn7kp4604p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nvm";
@@ -69371,12 +70903,12 @@
melpaBuild {
pname = "nz-holidays";
ename = "nz-holidays";
- version = "20190307.1437";
+ version = "20190415.3";
src = fetchFromGitHub {
owner = "techquila";
repo = "nz-holidays";
- rev = "b609dbb02e6824600b43d3976c8a428347c7df93";
- sha256 = "10z563jmgwz22jv720rssc3irbl9624icfp059pp0qirnlg2ibx0";
+ rev = "afc875cf40789fa45a4a811685b0a7c4f239392f";
+ sha256 = "1bk00pv7ylbrmf42papp6z2bhnp5fbnd4wy3gdzd18j7f2g0196v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4dfbe628247fc73d9a0963b7e9b92b07854817c9/recipes/nz-holidays";
@@ -69449,12 +70981,12 @@
melpaBuild {
pname = "ob-ammonite";
ename = "ob-ammonite";
- version = "20190218.2351";
+ version = "20190604.651";
src = fetchFromGitHub {
owner = "zwild";
repo = "ob-ammonite";
- rev = "c9832401f0f782aa5ca73c289c5aaa93076d77a6";
- sha256 = "1igy3c239gaxcby6ap2hhfk0kdh3g1mkfx8hh5f2c46ncv4zrhf0";
+ rev = "e9d431acc014fb064d77fab0201c626126e7922c";
+ sha256 = "1cmpczl9p8ig1ql85kqhshzd64rc8xjpq0qgx0jq9yk4syaayk4h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/508358506a6994baf120be2acba86762f5727c6c/recipes/ob-ammonite";
@@ -69605,12 +71137,12 @@
melpaBuild {
pname = "ob-cfengine3";
ename = "ob-cfengine3";
- version = "20190329.1503";
+ version = "20190520.1229";
src = fetchFromGitHub {
owner = "nickanderson";
repo = "ob-cfengine3";
- rev = "96e74940351894512dca89cff473c46e74458587";
- sha256 = "04kdg0dwbzdr4pr7y55iiax9ba0y0is8prgn98y9gj9d383r2mif";
+ rev = "e95f01b34011ff0ab94dedae2fb68efef236985b";
+ sha256 = "0c7ylvisizafza118dswvwyzmr85r0q9lsf1skvhsgvc53gvjf1b";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d068233c438e76cbcc6e9a97cbec9b2550a18ed6/recipes/ob-cfengine3";
@@ -70131,12 +71663,12 @@
melpaBuild {
pname = "ob-ml-marklogic";
ename = "ob-ml-marklogic";
- version = "20190311.2023";
+ version = "20190312.614";
src = fetchFromGitHub {
owner = "ndw";
repo = "ob-ml-marklogic";
- rev = "adc16f6e4d056245fc8dc680383297e1c11d1e78";
- sha256 = "1kwazr0kixr64jggrh7gs172qcprz7ifg1zdm4cf0947nsspjnc1";
+ rev = "d5660ad14f29e17cd26ae92eeb585b24030e9570";
+ sha256 = "1aqllsn965km3796q92w3a3z92hkpm5i0l6p4fm3va9xq7j79cyc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/edce412552d4798450493e0a3dbe768f38f77cc7/recipes/ob-ml-marklogic";
@@ -70208,12 +71740,12 @@
melpaBuild {
pname = "ob-prolog";
ename = "ob-prolog";
- version = "20180720.344";
+ version = "20190410.1430";
src = fetchFromGitHub {
owner = "ljos";
repo = "ob-prolog";
- rev = "85ada8fc1f523167f137746c82d823a194160141";
- sha256 = "1fa3hn9l9av7z6g4az8cfr2157g5cdryzp8nrmjr8w9386p13m4l";
+ rev = "149abd3832fc5a6a1cb01a586a1622a8f25887dc";
+ sha256 = "033pqfm3hj2585ibmqjhf7s1imckf615s6zg38jsq21wxv5fx8nc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fb87868cd74325f0a4a38c5542c264501000951d/recipes/ob-prolog";
@@ -70234,12 +71766,12 @@
melpaBuild {
pname = "ob-restclient";
ename = "ob-restclient";
- version = "20180904.9";
+ version = "20190519.445";
src = fetchFromGitHub {
owner = "alf";
repo = "ob-restclient.el";
- rev = "00b2c5a6637ab6e504708612357ffb29b5416e4b";
- sha256 = "03jsdczywys5df1ac7bmli31wkxvbsymd5k0s6iaz62kc454l3wj";
+ rev = "fab4559d07993ce554ab6b06b50f4b445b36716c";
+ sha256 = "11mr4dkh3v8ynr3k83ms61cyw9bqqcj5j4yi37q9qgaidc3dg2sp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/28c1d3af3f8b2f598b80b03b64de5d15cbb3f13d/recipes/ob-restclient";
@@ -70339,12 +71871,12 @@
melpaBuild {
pname = "ob-sql-mode";
ename = "ob-sql-mode";
- version = "20190212.1255";
+ version = "20190421.839";
src = fetchFromGitHub {
owner = "nikclayton";
repo = "ob-sql-mode";
- rev = "49dac3b64f9eaebe9d406e398f95a40b2993e6d0";
- sha256 = "0js5ygc43qi83jzfcri2nv71ii4q7a9yc1m4q34iyn0zli70r4gh";
+ rev = "b31a016585324ad91f1742ff6205bcb76f3ece6e";
+ sha256 = "1k2cfxaq38wv8s2x1c52v0bw55c12n399614l0dx1aqy2wh1afgi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ob-sql-mode";
@@ -70575,12 +72107,12 @@
melpaBuild {
pname = "objed";
ename = "objed";
- version = "20190407.1014";
+ version = "20190530.736";
src = fetchFromGitHub {
owner = "clemera";
repo = "objed";
- rev = "5aa473d7c276f1ed5956e51b7f7df4e35d0ec895";
- sha256 = "00gmssf91gp76b5rl0glggfwpilld7hg7w2fy6binvgjbn8ncr46";
+ rev = "70cf23ee694651e9b6feada6e380318e519b649b";
+ sha256 = "080nlv4hdhmk791g6r15p04prgmhqyzdrphaiz5mj1zdws2yjhmb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4abc6d927a2bf238d23256adcc9f09a751c90374/recipes/objed";
@@ -70855,12 +72387,12 @@
melpaBuild {
pname = "oer-reveal";
ename = "oer-reveal";
- version = "20190407.1005";
+ version = "20190525.911";
src = fetchFromGitLab {
owner = "oer";
repo = "oer-reveal";
- rev = "a42da802360d3dd90711e353ea83ac4c74f8bbc7";
- sha256 = "0yw9dnz33p8v6084fa2w3cvlcjpi5gi86aphpzfza42cxbc3wwss";
+ rev = "061ca951e33513da88ad9e99c56e1c99999bbcfd";
+ sha256 = "04bns9jqw4pjc6xf3rg7yl8ifi1ra4r9qdpg96fglaslhva5ib4j";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5982e377cd4cc2e72bfe4650c473c9f6b71085e3/recipes/oer-reveal";
@@ -70950,32 +72482,6 @@
license = lib.licenses.free;
};
}) {};
- olivetti = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "olivetti";
- ename = "olivetti";
- version = "20190330.933";
- src = fetchFromGitHub {
- owner = "rnkn";
- repo = "olivetti";
- rev = "cb22f8ab14b7a7ad3b3650b0e36a1b61d1253950";
- sha256 = "149zf7cbd8jzj4a4rpi2vbg0z90zqsdiizb1yy579phg3v2s4b69";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/697334ca3cdb9630572ae267811bd5c2a67d2a95/recipes/olivetti";
- sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/olivetti";
- license = lib.licenses.free;
- };
- }) {};
om-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -71181,12 +72687,12 @@
melpaBuild {
pname = "omnisharp";
ename = "omnisharp";
- version = "20190227.2222";
+ version = "20190526.531";
src = fetchFromGitHub {
owner = "OmniSharp";
repo = "omnisharp-emacs";
- rev = "be97227714bc14b625c5cbf6eaa9a2a74c940631";
- sha256 = "1b3zpckbhpada02yq6lzag8b1ayaw4py4i3rvq2lz5qbjpchhv5k";
+ rev = "9c0bc9de44e71184e3b23cce62d70db43cf616e7";
+ sha256 = "1wx6k30f10hqbfzl31gi28w4j1mgviwl23ny6dq8mnh4pcgjijyq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp";
@@ -71297,12 +72803,12 @@
melpaBuild {
pname = "one-themes";
ename = "one-themes";
- version = "20181030.442";
+ version = "20190424.40";
src = fetchFromGitHub {
owner = "balajisivaraman";
repo = "emacs-one-themes";
- rev = "1b50f2f88fe5e207cbe6d68db710361e3bc4a9ce";
- sha256 = "1jap6i7kavvwv7bis4x8s7a3ww4srsm3qb05r2vbchfgk7adw92m";
+ rev = "e62e4ebef7ef8ccb1e90781d613638d30cf24d7a";
+ sha256 = "13vjlgac3ikd5xr6cjqb3aaj8qr201lc3ndvwhj3k617474312jh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/504fb2fa2fe17eb008f7e9b8f7fb394f4a3ebd28/recipes/one-themes";
@@ -71898,12 +73404,12 @@
melpaBuild {
pname = "org-brain";
ename = "org-brain";
- version = "20190305.616";
+ version = "20190604.1318";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "org-brain";
- rev = "62cf65d3586cfeecb6339adcacc0515a36bbcc63";
- sha256 = "0vjq1nnk5qq0362ccp367sxj1qwz0ahmb4qkfcz92fkpzhxch2v9";
+ rev = "20720b84395d396ee466aaa7e338fda510cf0783";
+ sha256 = "0sgd6ghsdch7zxlgck5a8008420fa42x4dszxlhlq65gaw9jdn4z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/47480fbae06e4110d50bc89db7df05fa80afc7d3/recipes/org-brain";
@@ -72029,12 +73535,12 @@
melpaBuild {
pname = "org-chef";
ename = "org-chef";
- version = "20190320.1617";
+ version = "20190528.510";
src = fetchFromGitHub {
owner = "Chobbes";
repo = "org-chef";
- rev = "22fc63ca946a3e684c4298e0482cec9acb1af0fb";
- sha256 = "1fnlazvj2fhhiv33b5f43d5h32c4n1sz7kav6g5gnb90sb6qnzly";
+ rev = "e1ccda68d146349fae1a2072c932a4ff5078f495";
+ sha256 = "0qirp3pbp7knrv9m7g7z7qgpqx4pgfyd1b58gv4xjmqjw6p5kmi8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/23b9e64887a290fca7c7ab2718f627f8d728575f/recipes/org-chef";
@@ -72055,12 +73561,12 @@
melpaBuild {
pname = "org-cliplink";
ename = "org-cliplink";
- version = "20181022.539";
+ version = "20190518.712";
src = fetchFromGitHub {
owner = "rexim";
repo = "org-cliplink";
- rev = "7ab98f2b17a627e907b50c27737ec1a8ae8b0f3d";
- sha256 = "0rwh5602d6hd0nvr3j50m2xz48a2kwknnn0f4aabshhb5x0ry5g8";
+ rev = "e03aa07fef350cfeb6374c669d1cd80eeb1a0f26";
+ sha256 = "05yrvz25c6d6j2631yc8rdw0vl247mbdj2jcl4z8imy9mj5bklx9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7ddb13c59441fdf4eb1ba3816e147279dea7d429/recipes/org-cliplink";
@@ -72110,12 +73616,12 @@
melpaBuild {
pname = "org-clock-csv";
ename = "org-clock-csv";
- version = "20180313.1957";
+ version = "20190418.805";
src = fetchFromGitHub {
owner = "atheriel";
repo = "org-clock-csv";
- rev = "4a6e9e4895799afa0b994f4a908c1e3c2043451f";
- sha256 = "1f7xvarimv82xwiw5cavnak7av0yi4afn94nhhp60pyfh8azls50";
+ rev = "e2fbaa1ad1a1be40fceecde603a600b292b76acc";
+ sha256 = "1fpjga40v2wlkvq4ap75hd844m47gm55dkraznqz078k5f8fx8kk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e023cb898699f76f6c3d9ffe8162aacfc6a8c34f/recipes/org-clock-csv";
@@ -72269,11 +73775,11 @@
melpaBuild {
pname = "org-d20";
ename = "org-d20";
- version = "20190120.1417";
+ version = "20190415.1310";
src = fetchgit {
url = "https://git.spwhitton.name/org-d20";
- rev = "0154efc1f20fca5c1c0bedd59920512d0f72b7a1";
- sha256 = "0rapd9rwazpb1fpzp93b0may9qyhf6drx9vqqb1pvigav3j892hi";
+ rev = "e0fb2c04a55c55cbf59a85a0b2e23ef18370ca61";
+ sha256 = "1q5s2gj1968z23qf7ds2ychvvnzmlayh1v16krf0lf3zj7a3k20s";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/98bf91038196dfb59c491c9ed96c6b6a0cb311a9/recipes/org-d20";
@@ -72372,12 +73878,12 @@
melpaBuild {
pname = "org-download";
ename = "org-download";
- version = "20190404.605";
+ version = "20190604.640";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "org-download";
- rev = "055c92e56ac156dddd3185fd7d088d8b5a27e7d2";
- sha256 = "1xfl6jyrw023filx0xj8gdmfkz7fx3r51l4gpxw9ca8b88yljxlf";
+ rev = "ac72bf8fce3e855da60687027b6b8601cf1de480";
+ sha256 = "0ax5wd44765wnwabkam1g2r62gq8crx2qq733s2mg1z72cfvwxqb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/edab283bc9ca736499207518b4c9f5e71e822bd9/recipes/org-download";
@@ -72836,12 +74342,12 @@
melpaBuild {
pname = "org-jira";
ename = "org-jira";
- version = "20181223.2159";
+ version = "20190502.637";
src = fetchFromGitHub {
owner = "ahungry";
repo = "org-jira";
- rev = "4b67f6cc2460f64df7b50983d018f9e29db48b1a";
- sha256 = "13hwyz5l9d07w0wyjym9vd9x2ndn906r6c5ir2qkji9rvlp6drnl";
+ rev = "883501bf57ee99d9add9c6eac47c79d372c0f61e";
+ sha256 = "0vfkr9cppagqvacl8cwpkzp62igf9rwzs5nwc2rk3g014wylp6s6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e0a2fae6eecb6b4b36fe97ad99691e2c5456586f/recipes/org-jira";
@@ -72862,12 +74368,12 @@
melpaBuild {
pname = "org-journal";
ename = "org-journal";
- version = "20190329.1315";
+ version = "20190517.743";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-journal";
- rev = "bca2c39c692f7c58dbbe03698748187f87822043";
- sha256 = "1zlbi1d4kny0sf9g4drqk1q4zdm91l2xmlvzz360nwm8ha88nx29";
+ rev = "529993646e2c399dd169ce11c0e37f35d2c7e39d";
+ sha256 = "0bzbhsicfgnfn1kzaqpwhby6yvayr253n5gx2z8ccc8v6qqdvxdh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal";
@@ -72917,12 +74423,12 @@
melpaBuild {
pname = "org-kanban";
ename = "org-kanban";
- version = "20190323.944";
+ version = "20190527.2207";
src = fetchFromGitHub {
owner = "gizmomogwai";
repo = "org-kanban";
- rev = "03387a779167c4acbc04d4970cd33c52a2ca0bcd";
- sha256 = "0arjx1a7skdlmagyy0bbxwc134dn951y99yv4jg6l64j1f31y0yg";
+ rev = "dcf5e8c0a2d82bc4101c03ba21a2d38b406ea00b";
+ sha256 = "02n5753kqvb6ankqrynrlalik5r9g367rg4yzmf8mhx52x1h5va4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a9f3a10c126fa43a6fa60ee7f8e50c7a9661dbc1/recipes/org-kanban";
@@ -73108,12 +74614,12 @@
melpaBuild {
pname = "org-mime";
ename = "org-mime";
- version = "20190402.321";
+ version = "20190513.637";
src = fetchFromGitHub {
owner = "org-mime";
repo = "org-mime";
- rev = "0db41d5b4e9ef9df640e7212a22708ce636b3986";
- sha256 = "0lcn69vzx5987yz4byxvnk8z7nc2bbww7my6v0hxqkra9xh0iqlm";
+ rev = "f8eac8ccdec2ebf1dec87d4f5f01b4b53f86c67c";
+ sha256 = "0gjdhhri2fm93phvv3fnw6iz5agpafryacj521j80jf1dmj2bj5h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/521678fa13884dae69c2b4b7a2af718b2eea4b28/recipes/org-mime";
@@ -73188,12 +74694,12 @@
melpaBuild {
pname = "org-mru-clock";
ename = "org-mru-clock";
- version = "20180419.606";
+ version = "20190602.1108";
src = fetchFromGitHub {
owner = "unhammer";
repo = "org-mru-clock";
- rev = "0e2dcb7799fb82bbe55c8aa9930192871e8b6109";
- sha256 = "08z6jc7qhj7zmzf1sag1n4nqh77k1dis2ijc6s2pzqlaxm3rhxyw";
+ rev = "a816e173ee22ff96f0fef6c54316e2583192af32";
+ sha256 = "09zcnvz4mgw1lak5vnpa9b4r4gpskviyl2jwpjqmwqgvjhw31g0v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b36bf1c1faa4d7e38254416a293e56af96214136/recipes/org-mru-clock";
@@ -73299,12 +74805,12 @@
melpaBuild {
pname = "org-noter";
ename = "org-noter";
- version = "20190307.926";
+ version = "20190502.725";
src = fetchFromGitHub {
owner = "weirdNox";
repo = "org-noter";
- rev = "f6f7a8d3af1c3e7e26173b245ba4a95e3cf03074";
- sha256 = "092d8icw5pny685yqkm0c5bx6d7axgh6rcvnc3yri84dlbdzpfbv";
+ rev = "920798e2a977ca74b77cf728ee40bb48450f941b";
+ sha256 = "1sx4pf5hwbq7r967zigzq3jhhisd3x9pf3nmp7iickyd1jcg3qbv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2bc0d95dc2744277d6acbba1f7483b4c14d75c/recipes/org-noter";
@@ -73589,12 +75095,12 @@
melpaBuild {
pname = "org-pomodoro";
ename = "org-pomodoro";
- version = "20171108.1314";
+ version = "20190530.745";
src = fetchFromGitHub {
owner = "lolownia";
repo = "org-pomodoro";
- rev = "3deed1c26dcbda4d5231b9085ddf68e302b0f9dc";
- sha256 = "0mpcqqrz8mrqn1gbvffyw5d0qgpg3cpljxqk028s9snj4vy6xpz5";
+ rev = "aa07c11318f91219336197e62c47bc7a3d090479";
+ sha256 = "0nbprh2nhnmb7ngp9ndr6zr37ashcsvpi5slv7a37x1dl7j6w1k4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e54e77c5619b56e9b488b3fe8761188b6b3b4198/recipes/org-pomodoro";
@@ -73669,12 +75175,12 @@
melpaBuild {
pname = "org-pretty-tags";
ename = "org-pretty-tags";
- version = "20190327.1447";
+ version = "20190527.155";
src = fetchFromGitLab {
owner = "marcowahl";
repo = "org-pretty-tags";
- rev = "6ac9c35e489dbe3a2e9c3101b49d8b0ea77cad23";
- sha256 = "0scar1938xlr8c3zsbfw5z8mzrrr3255qisl9rjyh4kw80vai8bs";
+ rev = "9cc14f19bffd6efc733f6b1ab43198659c61a7ef";
+ sha256 = "1dxf3kgcbysb150j0jpsbs94vb8qy34pmdpd5ds2wgsjpvzxqy28";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9ad60399420764d4ef5d6acddae9241205937e78/recipes/org-pretty-tags";
@@ -73890,12 +75396,12 @@
melpaBuild {
pname = "org-re-reveal";
ename = "org-re-reveal";
- version = "20190405.959";
+ version = "20190518.0";
src = fetchFromGitLab {
owner = "oer";
repo = "org-re-reveal";
- rev = "871b37110dfc806b9183ec9c9550942bba190d0f";
- sha256 = "1f1n2lbql1ik69b4bqwm0y9hpgf4glbk6k7jcd0xd62fq8x1yigc";
+ rev = "9d4a1bee112db8007c0e0a1fcb6be725f787a79a";
+ sha256 = "1pq3ynp441j1vhac0cz98r2riqw2187vdwc33hz92924kly66m9h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3e6c90a6b9004fbf0fbc08556f8effbcde8b468/recipes/org-re-reveal";
@@ -73936,42 +75442,6 @@
license = lib.licenses.free;
};
}) {};
- org-readme = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , header2
- , http-post-simple
- , lib
- , lib-requires
- , melpaBuild
- , yaoddmuse }:
- melpaBuild {
- pname = "org-readme";
- ename = "org-readme";
- version = "20151204.417";
- src = fetchFromGitHub {
- owner = "mattfidler";
- repo = "org-readme";
- rev = "4cb9f768d282a2835b4510b6504ff9ede487007d";
- sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/317318e6071b174e0ec6302ea4f526976d837db4/recipes/org-readme";
- sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh";
- name = "recipe";
- };
- packageRequires = [
- cl-lib
- header2
- http-post-simple
- lib-requires
- yaoddmuse
- ];
- meta = {
- homepage = "https://melpa.org/#/org-readme";
- license = lib.licenses.free;
- };
- }) {};
org-recent-headings = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -73983,12 +75453,12 @@
melpaBuild {
pname = "org-recent-headings";
ename = "org-recent-headings";
- version = "20170907.2129";
+ version = "20190115.740";
src = fetchFromGitHub {
owner = "alphapapa";
repo = "org-recent-headings";
- rev = "a09c2670c400c7a4fbbf0ac05d2d9226aa10e8f4";
- sha256 = "1m0v94zaz30c5p4k1s213dpg0kjs6nd92bph2zlbm37wq8znizmn";
+ rev = "01633b51ac3958b41cc6c79e6d3714047a91c1e9";
+ sha256 = "0gsrzmg3mssh9s28yjm9m866fnhm1pcligssz1q6brga6dm6f2yy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/668b79c179cbdb77c4049e7c620433255f63d808/recipes/org-recent-headings";
@@ -74071,12 +75541,12 @@
melpaBuild {
pname = "org-ref";
ename = "org-ref";
- version = "20190318.858";
+ version = "20190604.848";
src = fetchFromGitHub {
owner = "jkitchin";
repo = "org-ref";
- rev = "e73bcc5bc07555f5eed4b63d14e4f209bb877c20";
- sha256 = "17ijwzmzclp0gfscy42ir2j997l34smf868j1f6kr00snyagzjxk";
+ rev = "e95f3434a5c5a298321d2c6898a72337a8079781";
+ sha256 = "1l5zvys4i91jl5z46b11j3xc9015d1cj57ilzxa693pbckln173f";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref";
@@ -74135,12 +75605,12 @@
melpaBuild {
pname = "org-reverse-datetree";
ename = "org-reverse-datetree";
- version = "20190404.2002";
+ version = "20190527.740";
src = fetchFromGitHub {
owner = "akirak";
repo = "org-reverse-datetree";
- rev = "99e7ae3d0860dfe0f4d647ceb045f8b00bf1fe77";
- sha256 = "1ji8c2480ib48n1lq4ypgq524slgzfszpxwsv1q2wyqnjzbc2csv";
+ rev = "4ad43bb2895c2ec99e6b2338aceb4c18387f03b4";
+ sha256 = "0ga0bggn1552qnj7vrhxr6q6lma725cbb4mh9rn1nj2xn0yn2qal";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a08612af18bb620955f7b5450eba3f44cdb60673/recipes/org-reverse-datetree";
@@ -74292,12 +75762,12 @@
melpaBuild {
pname = "org-sql";
ename = "org-sql";
- version = "20190402.2035";
+ version = "20190529.1959";
src = fetchFromGitHub {
owner = "ndwarshuis";
repo = "org-sql";
- rev = "3793b270d5cd5ec047d7a32f2b34033592ffddf9";
- sha256 = "0hlp4qdpdh5a1jnj8mas8vnmfd5j7g6vkyczblgi2f5vvfvls0v6";
+ rev = "1fc730deb82471b4235f931e808d8610a18be2dd";
+ sha256 = "1nwlxh6c8gds2alclmlbsx834qmw4chgjlwqmmrwxaxpwapr0s8a";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/012573a35a302e9bb6f127cf28ac04f93796400e/recipes/org-sql";
@@ -74320,12 +75790,12 @@
melpaBuild {
pname = "org-starter";
ename = "org-starter";
- version = "20190406.314";
+ version = "20190604.507";
src = fetchFromGitHub {
owner = "akirak";
repo = "org-starter";
- rev = "4fa28564cab2acfde56ca815882caa9e715c848a";
- sha256 = "1vjv2y3g02v5sg88z0kqig3jn0ryvck9s2syzdjpfsxp2jwbsw7a";
+ rev = "726e402fcf3357ee6ae077dc5507c7b71a872f24";
+ sha256 = "0s8nv6qjd9vmxp8qsvsl3bsd2ppjs9mg8acqnv27zra1algzfg0n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7bdd9c835184ef1a6fabfaf7adb56a51514b75ea/recipes/org-starter";
@@ -74346,12 +75816,12 @@
melpaBuild {
pname = "org-static-blog";
ename = "org-static-blog";
- version = "20190403.526";
+ version = "20190527.2157";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-static-blog";
- rev = "0269bbaa6de78a3fce8d926f54bb6e7b975f9c3a";
- sha256 = "1f1v73x58fd80hwm0pfmjp4fijcx2y6zvcpas1ys3sjl2230z8s5";
+ rev = "53d53b6d02c2369654196c230056630cb21bd8d8";
+ sha256 = "06zdyinl00xy59khab0r7454bmlchyc755k953lxv1sfhqmnb2r8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e0768d41a3de625c04ac8644ef2e05f17ee99908/recipes/org-static-blog";
@@ -74782,12 +76252,12 @@
melpaBuild {
pname = "org-variable-pitch";
ename = "org-variable-pitch";
- version = "20190128.1251";
+ version = "20190409.1115";
src = fetchFromGitHub {
owner = "cadadr";
repo = "elisp";
- rev = "05bd1d5db68df144bc7552a460371d94a2cb5b3c";
- sha256 = "0v3swpbhi27nlwcav3iwanckqzirjvz6gl49if8kskmp8pdvy5fs";
+ rev = "a2bf11f6dd8c990c50929759c7b6ccdb4af78cd4";
+ sha256 = "1qqr2vd4yz413cvqfb4sk6rv8990nhcz5cr59va8zcz5d7gdzv2w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9632b7e98772b584d6420f8d0f9652d67118e05e/recipes/org-variable-pitch";
@@ -75036,12 +76506,12 @@
melpaBuild {
pname = "org2issue";
ename = "org2issue";
- version = "20160426.1818";
+ version = "20190531.241";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "org2issue";
- rev = "0f7f13463e389f2d8d7d830a928042d0cf1c71eb";
- sha256 = "1lvwkvzqgy9nlz7zmqfl9j8cairjfv3vknpzcqp6rzp6hkq04zk5";
+ rev = "910b98c858762fd14b11d261626c5e979dde0833";
+ sha256 = "0xgrrbkfqkhj15n7mbmh61g8i535ykhxh5y71054p3kikgnrh290";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ad1759854c3bd302aa353dea92cf462e981aff2f/recipes/org2issue";
@@ -75161,16 +76631,16 @@
melpaBuild {
pname = "organize-imports-java";
ename = "organize-imports-java";
- version = "20190304.1047";
+ version = "20190516.2126";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "organize-imports-java";
- rev = "e201750cee13876dbea2fba8508ade1b9f76b29a";
- sha256 = "0lnsxa3aiyaww62z4y07ciwak2gxv881qraz6sl5csfjdmbycii1";
+ rev = "92989a7bf02340f8c65e1e69263c9c8ffc5afbeb";
+ sha256 = "1pr4zbv2k0rjljppv0kiq37h0s62pzyvqypxagmjdfkhkn7jssvr";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad0242f941ff44b4897c94d336bc0af498582dd7/recipes/organize-imports-java";
- sha256 = "1k8s7pm268w42fm0lqlqg77mib8mbccw11ppf99r574510a1bni3";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/organize-imports-java";
+ sha256 = "1n91qd9il2sq5wkcc2ag8mvgr1jkgwygrw9kpq7j16qch420i3fj";
name = "recipe";
};
packageRequires = [ cl-lib emacs f s ];
@@ -75217,12 +76687,12 @@
melpaBuild {
pname = "orgit";
ename = "orgit";
- version = "20190304.1007";
+ version = "20190417.1024";
src = fetchFromGitHub {
owner = "magit";
repo = "orgit";
- rev = "2456436a7e64d26bcf455b3890a586acaa3e7f93";
- sha256 = "1i52dq2ynddb1irgigr5mdwfbfd3bvm1f29jnzd7nlc0nk186nvh";
+ rev = "a2d39370409b70dfe543329befbc876dd24832bd";
+ sha256 = "0lxp74ncl75czmgy09lirng96ai1ykpw22q61wc655nsr5qqxrba";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit";
@@ -75993,6 +77463,33 @@
license = lib.licenses.free;
};
}) {};
+ ovpn-mode = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ovpn-mode";
+ ename = "ovpn-mode";
+ version = "20190421.2048";
+ src = fetchFromGitHub {
+ owner = "anticomputer";
+ repo = "ovpn-mode";
+ rev = "8d26902ea61c59e716147a7113493f110abdf635";
+ sha256 = "04935x2acqh75snfcr0gz3k654qw619x7i89gqzs22liabll81s7";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/16430ce0597c18925d7fdf83acfca996e8ad6457/recipes/ovpn-mode";
+ sha256 = "1p0gk3yiq7srpjcqhy0h2402m9ijb3nl9yz2lhnxvc41n9fj65gd";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ovpn-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
owdriver = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -76187,12 +77684,12 @@
melpaBuild {
pname = "ox-hugo";
ename = "ox-hugo";
- version = "20190317.2148";
+ version = "20190602.1941";
src = fetchFromGitHub {
owner = "kaushalmodi";
repo = "ox-hugo";
- rev = "86a6196a431df4a9f81dbd00657e20a03c622c03";
- sha256 = "098gwyrzkr8fj54jfdirc1m9rbcr2rsmi1klm0fv6hzfh8di1j93";
+ rev = "5be9bae6fe0d6aa7cd6c8e158c34e4a90d6e6e36";
+ sha256 = "155a6wady9gq36hm62ximj2fw1bx7m8k68aim1w9kbf7da80qwaa";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e1240bb7b5bb8773f804b987901566a20e3e8a9/recipes/ox-hugo";
@@ -76510,16 +78007,16 @@
melpaBuild {
pname = "ox-reveal";
ename = "ox-reveal";
- version = "20161027.226";
+ version = "20180721.2003";
src = fetchFromGitHub {
owner = "yjwen";
repo = "org-reveal";
- rev = "d7ffc3fd1b095ed81e0af005ecbb0b42427d13b0";
- sha256 = "0y8cnpm7hw8s3d09j8imdpaddqq914nfy3skjm7i10g9xacrp294";
+ rev = "1cdd088ec5fab631c564dca7f9f74fd3e9b7d4d4";
+ sha256 = "1vjxjadq2i74p96y9jxnqj1yb86fsgxzmn7bjgnb88ay6nvc1l72";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8bb4024eef5dc4cc3674bbbed9d92f074d533f35/recipes/ox-reveal";
- sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2f267bb13a2fe5e1af49fd70d831a07d83b7d5/recipes/ox-reveal";
+ sha256 = "1lsq9xx95nhz1914wx7781fajfs84m27iwv980hqq29lyn2lzbl6";
name = "recipe";
};
packageRequires = [ org ];
@@ -76537,12 +78034,12 @@
melpaBuild {
pname = "ox-rfc";
ename = "ox-rfc";
- version = "20190310.2321";
+ version = "20190429.433";
src = fetchFromGitHub {
owner = "choppsv1";
repo = "org-rfc-export";
- rev = "b0345990036a2322609a6fa360deba079d7001fe";
- sha256 = "05962hwww6wkbd9p4svnc5ynbsgnnfryf900nr65qap41bzxfa3y";
+ rev = "4cac33c387bc10e32f18940298aa5095d060ed3e";
+ sha256 = "0y442swdsh8fl3471bz9276r2srv6dp7j12y09s82xx5nm668nmb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f49159d6a379bf435e2af8920176fd84693a60/recipes/ox-rfc";
@@ -76829,12 +78326,12 @@
melpaBuild {
pname = "ox-wk";
ename = "ox-wk";
- version = "20181111.134";
+ version = "20190526.324";
src = fetchFromGitHub {
owner = "w-vi";
repo = "ox-wk.el";
- rev = "9fc37e7e2f789b0ba07cb117ea1e1dcd14a2fd83";
- sha256 = "00wsx21nmnvci2wfvxaci1kdxplavi2a4dw8ahvl7ncr3b60219f";
+ rev = "3da2213be1874d9d3e8a9337b09003d9c102b943";
+ sha256 = "0aw6ykcgyn6p7hhggyd7jfyx9b25pr0vgnlfvcwhjc3w0lm94yi1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0947993df2d9bee493c2c25760f1ac5bcc1136ac/recipes/ox-wk";
@@ -77011,12 +78508,12 @@
melpaBuild {
pname = "package-lint";
ename = "package-lint";
- version = "20190307.1612";
+ version = "20190519.352";
src = fetchFromGitHub {
owner = "purcell";
repo = "package-lint";
- rev = "e494a1a9027e73fa07fc42236b953792ce0a32bf";
- sha256 = "0vwr1v491a0hp6dx5ipsf5zd3zmi7igd1j59wzl6njmq9miarzy1";
+ rev = "152492f8325451f002c5090b837f7abcf5861e8b";
+ sha256 = "02lmc1np5vs4rdsazbazxry2ighhww7w5r0k60jxbwd2yar6hibp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dbfb0250a58b2e31c32ff1496ed66a3c5439bd67/recipes/package-lint";
@@ -77250,12 +78747,12 @@
melpaBuild {
pname = "page-break-lines";
ename = "page-break-lines";
- version = "20181221.1508";
+ version = "20190519.1538";
src = fetchFromGitHub {
owner = "purcell";
repo = "page-break-lines";
- rev = "87e801efb816b24e83ebf84c052001e178e180bc";
- sha256 = "0y2ag7gfspcndjmap87n8mxn5kglb80fzpdmramzjjsrcx7dwdix";
+ rev = "6f19d894bda6a981c10a58df5e23419f4d2ba353";
+ sha256 = "0b9jlqf5hk5m5zywwfcgxjb88aqhij73fxwkp16psfm4bv0zy78p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/page-break-lines";
@@ -77410,12 +78907,12 @@
melpaBuild {
pname = "panda";
ename = "panda";
- version = "20190401.2306";
+ version = "20190604.1507";
src = fetchFromGitHub {
owner = "sebasmonia";
repo = "panda";
- rev = "a7f2045cc568a5ec8b97734abdbb8618990748ca";
- sha256 = "0a6ravwfjaf70mkkpd174y6w1hp2q18wjl5mmpa9gzyfa0c27v1q";
+ rev = "85a8552e1131442afdf6354e67d79bf5bdb3a469";
+ sha256 = "1yxdij2iaxzwbvrj7x0kxyxh3md99d8mb5mb9w7rxk7bfsx4cnn1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/69800de45dda180450ed9d47a24181b659d9d1ae/recipes/panda";
@@ -77514,12 +79011,12 @@
melpaBuild {
pname = "pangu-spacing";
ename = "pangu-spacing";
- version = "20170317.157";
+ version = "20190421.2214";
src = fetchFromGitHub {
owner = "coldnew";
repo = "pangu-spacing";
- rev = "a4463dbb74abdeddb6c1c132a1f8fcf67ed87498";
- sha256 = "143ywxgaf5y52ynd4wcqp40c5pgy61ng431y77l46iix10vasslq";
+ rev = "3a741c1b669c7194fb766b784c10d52a8de9b87f";
+ sha256 = "12980pwsk4pvvya2x9nbwzkyxy75qfqzs0jxl4jdblgrhh104bs0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c0b00eda1d20ff2cbffe3ac606e5fd60d915a5d6/recipes/pangu-spacing";
@@ -77599,12 +79096,12 @@
melpaBuild {
pname = "paradox";
ename = "paradox";
- version = "20190406.1609";
+ version = "20190429.457";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "paradox";
- rev = "7ccf2403b5d056bd6cbf75c110420e3f5f0e8c0b";
- sha256 = "1vq1qj8gif2215z4zqxlkqqn9qcb1v5rpzphhrcn6lwvl20qfja0";
+ rev = "906cf2a944c3ef0cd7bf08dc76ec5049e461f5d6";
+ sha256 = "0rx9xys7xk769p1sn1h37lyn09jflgffnh9p7n9flky17vdr70mk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox";
@@ -77617,6 +79114,32 @@
license = lib.licenses.free;
};
}) {};
+ parchment-theme = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "parchment-theme";
+ ename = "parchment-theme";
+ version = "20190603.1212";
+ src = fetchFromGitHub {
+ owner = "ajgrf";
+ repo = "parchment";
+ rev = "d3cbff72e39d0351e6f701b1b5cae7e79da853a5";
+ sha256 = "1z5iqc10p24qglrzqy1qmsrnbbzd4zdz64jr1vk5zin9248ql1ry";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2302f512053b22e5abbd6a654cf94e4d5c7f5ca/recipes/parchment-theme";
+ sha256 = "1dkl1f0zmnkw8xd89m5kd42rk4pg6a6wnm52g4p1b4yqqq27h6zm";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/parchment-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
paredit = callPackage ({ fetchgit
, fetchurl
, lib
@@ -77909,12 +79432,12 @@
melpaBuild {
pname = "parseclj";
ename = "parseclj";
- version = "20190327.151";
+ version = "20190531.11";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "parseclj";
- rev = "dec638c5ca02deac7b83718828279c5d0b49725f";
- sha256 = "15ylphnmk4dyrympi143g08jan8na31ncdzsifjhh68kisw7xzl4";
+ rev = "b34d3e13a249d4b92f1a008cdc1df20a92f866c5";
+ sha256 = "1bnlqkmpqpnmmsyhx49mryhkrkaq6v68x7a4kg2pn19ycf9xz6ds";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a977779a7ee49f57b849b14e581210a7f47d61/recipes/parseclj";
@@ -78124,12 +79647,12 @@
melpaBuild {
pname = "password-store";
ename = "password-store";
- version = "20190405.1930";
+ version = "20190425.1942";
src = fetchFromGitHub {
owner = "zx2c4";
repo = "password-store";
- rev = "5c9f614cc43c963a49b695abef8cb9be3f146e85";
- sha256 = "00sllhdr9xcb30x93aqh0j8pp7gqcn57yawkkx7jb8bbdmqkimcg";
+ rev = "0ee5ab3c5267faeafe6f95271ad7d5c59e15c90f";
+ sha256 = "1hs714w1sscxg6l6rrm0syjxb7bmcbij2p16j08hhcxvk4vy6rhk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/207f8ec84572176749d328cb2bbc4e87c36f202c/recipes/password-store";
@@ -78749,12 +80272,12 @@
melpaBuild {
pname = "pdf-tools";
ename = "pdf-tools";
- version = "20190308.2344";
+ version = "20190413.1318";
src = fetchFromGitHub {
owner = "politza";
repo = "pdf-tools";
- rev = "9a63f3909e5a331b6974deb03abd2c4bad42c2d9";
- sha256 = "11i4kbwclwyvznyd9q69fq36fjasvs72ziz0555hl3fjbbq0n71q";
+ rev = "d780b82a5ea5eb64140a3a68fa278f877771a1fc";
+ sha256 = "1kv8lvwwjkgglb6qx1xvxq5xk95wl44x3sw84jpqjya3p0xx75yc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools";
@@ -78767,6 +80290,33 @@
license = lib.licenses.free;
};
}) {};
+ pdf-view-restore = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , pdf-tools }:
+ melpaBuild {
+ pname = "pdf-view-restore";
+ ename = "pdf-view-restore";
+ version = "20190423.925";
+ src = fetchFromGitHub {
+ owner = "007kevin";
+ repo = "pdf-view-restore";
+ rev = "12d9734d2133dead548497193016c86ab28e9477";
+ sha256 = "1z5483jclfn1xrcdrvrw2c94fpnb1skv6c2ppi3w5nj4myny6nsv";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66f0d3e9c7eea64f23191a3f7ac05158e3ae68bc/recipes/pdf-view-restore";
+ sha256 = "1n3l7iyv5w937n0ihng8mzkaz09ngwclg5fv2s576d36b6jwm2k8";
+ name = "recipe";
+ };
+ packageRequires = [ emacs pdf-tools ];
+ meta = {
+ homepage = "https://melpa.org/#/pdf-view-restore";
+ license = lib.licenses.free;
+ };
+ }) {};
pdfgrep = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -78920,6 +80470,33 @@
license = lib.licenses.free;
};
}) {};
+ pepita = callPackage ({ csv
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "pepita";
+ ename = "pepita";
+ version = "20190604.1025";
+ src = fetchFromGitHub {
+ owner = "sebasmonia";
+ repo = "pepita";
+ rev = "3378b4557a3b359fb1cc7eeff97cf94f352ae1cf";
+ sha256 = "1m8n491hdzz4y0b5iv8n374gn0i9x6jsix5il4962q8bajjl3slv";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e9a393b11eaa29dbd0bf966fa0ab290b08ac7f39/recipes/pepita";
+ sha256 = "0xyy137hl8g74grhj8ipij4c80xrga1afjvzz5hf8hpx4zqbljpx";
+ name = "recipe";
+ };
+ packageRequires = [ csv emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/pepita";
+ license = lib.licenses.free;
+ };
+ }) {};
per-buffer-theme = callPackage ({ cl-lib ? null
, fetchhg
, fetchurl
@@ -78945,6 +80522,33 @@
license = lib.licenses.free;
};
}) {};
+ perfect-margin = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "perfect-margin";
+ ename = "perfect-margin";
+ version = "20190425.1945";
+ src = fetchFromGitHub {
+ owner = "mpwang";
+ repo = "perfect-margin";
+ rev = "a64336810929ecf801a4b65bb722e401e2cccf09";
+ sha256 = "13bl84g66hd1x6d3dhbzl4jd6hk1srxmzm4z34w75q00ap7qhyzb";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8cd6a81d46da6beff2754f69b1d74ff9cc1d49/recipes/perfect-margin";
+ sha256 = "0bn9bjz1bbl07z3wzhjplp0n5zla3yqc8phr3maap6mch3q0jc1y";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/perfect-margin";
+ license = lib.licenses.free;
+ };
+ }) {};
perl6-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -79110,12 +80714,12 @@
melpaBuild {
pname = "persp-mode";
ename = "persp-mode";
- version = "20180930.1020";
+ version = "20190511.702";
src = fetchFromGitHub {
owner = "Bad-ptr";
repo = "persp-mode.el";
- rev = "689f63e7370cd9424d84b9f7b2eb3d1955443313";
- sha256 = "141yakk7xfs0b58far1zqmwimim139bbzk0ymyzgghf5vyb5lxin";
+ rev = "e330e6240bbb82589077f30472b05b95d1ff430d";
+ sha256 = "0gy0h9mrgig0d2gjs2z949ld1ccgfhmp0dfd8g33g2kxgzp7wnv2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode";
@@ -79245,12 +80849,12 @@
melpaBuild {
pname = "pfuture";
ename = "pfuture";
- version = "20190322.52";
+ version = "20190505.306";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "pfuture";
- rev = "766cfb7d2df8ebc6144fb644d4d858f66657f60d";
- sha256 = "1zjkpanfxhdfq75dy5x2m541qxpcnh67d7aiijdgkb0g5v3yb61d";
+ rev = "263227534e8bb98aedce18698c34db9fd4d6500b";
+ sha256 = "13r1f741rk5k35s413iyh1kng20zmp29qr4bzlxg8wjl7d8q6da2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb70c9f56a58b5c7a2e8b69b191aa2fc7c9bcc8/recipes/pfuture";
@@ -79379,12 +80983,12 @@
melpaBuild {
pname = "phan";
ename = "phan";
- version = "20180527.2039";
+ version = "20190520.1903";
src = fetchFromGitHub {
owner = "emacs-php";
repo = "phan.el";
- rev = "6b077b3421a0b2c0b98a6906b8ab0d14d9d7bf50";
- sha256 = "1af4pam149dgxqzwqkjklxxqq2n8fg3l1b9w6bmaw24lx1pdxcyv";
+ rev = "82c2d962cd5cab647e8f2f5636bc83511ea40cb4";
+ sha256 = "1bypr6d85xr623bqq9j4hl2q4jiw8hyjhx1mp7q4jcm7pibkbjci";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/phan";
@@ -79767,12 +81371,12 @@
melpaBuild {
pname = "php-mode";
ename = "php-mode";
- version = "20190401.1042";
+ version = "20190530.1210";
src = fetchFromGitHub {
owner = "emacs-php";
repo = "php-mode";
- rev = "bcde734c37ca36e6c2a925038760247b09ca8825";
- sha256 = "0shrssfjbqykpyz8kmchizgcl2m29bxp1n1331csi0lnqkb9v540";
+ rev = "c53e0c1ec154fcfe6e5db56d1513d503a62e0355";
+ sha256 = "1gg156pj51wp61y42844667xy75ds3wh6qjasj55b9wci5l1hv04";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2e41dc09413eaa93704e7d9f55bd2bd01f658806/recipes/php-mode";
@@ -79879,12 +81483,12 @@
melpaBuild {
pname = "phpactor";
ename = "phpactor";
- version = "20190402.1916";
+ version = "20190531.800";
src = fetchFromGitHub {
owner = "emacs-php";
repo = "phpactor.el";
- rev = "5dc331636786bdcee9ce2868d4d313c40aca1303";
- sha256 = "0qwklrsd8hxjvcddjj4ks3p24nyc3rcsxs9hyn3jphxww2igjbiv";
+ rev = "f5df770f70a509f1ec2861512c38845ec1490277";
+ sha256 = "0y1f8c6wnqci9vi85q4c7nzkmmfsd46fbwq7dl88ymw3fz03pnzj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d67b98ecd541c227c011615f67d7a0890f5e1af3/recipes/phpactor";
@@ -79939,8 +81543,8 @@
sha256 = "0wb9pshgcrq2w9d9fpkywz299ihcb9fffh3fdk8rm1r8irylrjkh";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5a2b6cc39957e6d7185bd2bdfa3755e5b1f474a6/recipes/phpstan";
- sha256 = "0j3xb3h6fqgk0nv5mlfz7lgfkcy0z04an9qy8nq5y473hdj87qzm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/43808f57146a395b92ed498803fa948a33e5f3c2/recipes/phpstan";
+ sha256 = "1nx9d4mhxhvbgrxawkpkw03b75bg1xpli1x83g2bhs8ar8lypjik";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -79949,6 +81553,34 @@
license = lib.licenses.free;
};
}) {};
+ phpt-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , php-mode
+ , polymode }:
+ melpaBuild {
+ pname = "phpt-mode";
+ ename = "phpt-mode";
+ version = "20190512.1109";
+ src = fetchFromGitHub {
+ owner = "emacs-php";
+ repo = "phpt-mode";
+ rev = "deb386f1a81003074c476f15e1975d445ff6df01";
+ sha256 = "0wv1q44f5hmpsrjvjb5y8c1gnjkazdghmgbzw6l30i3j3z36fy60";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59a0e7aabf45c98b1ecf9db49f6420a6e051733b/recipes/phpt-mode";
+ sha256 = "1isq3l6qhya5vafmcqbda7r0irdmgvmlmdg98n7h8yck5imi78yf";
+ name = "recipe";
+ };
+ packageRequires = [ emacs php-mode polymode ];
+ meta = {
+ homepage = "https://melpa.org/#/phpt-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
phpunit = callPackage ({ cl-lib ? null
, emacs
, f
@@ -80376,12 +82008,12 @@
melpaBuild {
pname = "pipenv";
ename = "pipenv";
- version = "20190307.355";
+ version = "20190522.103";
src = fetchFromGitHub {
owner = "pwalsh";
repo = "pipenv.el";
- rev = "189cf5a4d425b6bdcd26742a460cf12cc540f524";
- sha256 = "0dcd7gmjs5s17h55nnpyppxg3zf96p3w8bsb9sk2wy1jwxn566cm";
+ rev = "03edaaa44a5a4212d2e5a14e3ae6303189d76703";
+ sha256 = "04y6p8gd20xhn7qkz2gp94yxizwl67yhi7qs0x6c8nrxpqd1y5y9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d46738976f5dfaf899ee778b1ba6dcee455fd271/recipes/pipenv";
@@ -80628,7 +82260,8 @@
license = lib.licenses.free;
};
}) {};
- plantuml-mode = callPackage ({ emacs
+ plantuml-mode = callPackage ({ dash
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -80636,19 +82269,19 @@
melpaBuild {
pname = "plantuml-mode";
ename = "plantuml-mode";
- version = "20190316.458";
+ version = "20190531.153";
src = fetchFromGitHub {
owner = "skuro";
repo = "plantuml-mode";
- rev = "2b84a2df523904c180a3556c851f59beb0e070d7";
- sha256 = "0l4nxda55ipbrzy0nj59d1vf97m2h9ydviq9r7hiw4mjfq31lzsv";
+ rev = "27d48942a6bde22386694d87ec1b263a9f210d3a";
+ sha256 = "1nv1bjqdcqhpx37l3ir28n7iqn97papxr9719l849cnxq81g1v2w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/38e74bb9923044323f34473a5b13867fe39bed25/recipes/plantuml-mode";
sha256 = "03srbg34512vxcqn95q4r7h2aqbqq0sd5c9ffnbx2a75vsblqc6h";
name = "recipe";
};
- packageRequires = [ emacs ];
+ packageRequires = [ dash emacs ];
meta = {
homepage = "https://melpa.org/#/plantuml-mode";
license = lib.licenses.free;
@@ -80967,22 +82600,23 @@
license = lib.licenses.free;
};
}) {};
- po-mode = callPackage ({ fetchgit
+ po-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
, melpaBuild }:
melpaBuild {
pname = "po-mode";
ename = "po-mode";
- version = "20180505.415";
- src = fetchgit {
- url = "https://git.savannah.gnu.org/git/gettext.git";
- rev = "a57ffdb2f17d040a737e84114544fcd748fa87fa";
- sha256 = "19qg3l6w2lapjv73yvjiy5mj6j8kv7ch1gjpx2b86y2y5mqrqii7";
+ version = "20190511.842";
+ src = fetchFromGitHub {
+ owner = "emacsmirror";
+ repo = "po-mode";
+ rev = "1916142f6a817c733d5ec37e3b4fbae3da67e499";
+ sha256 = "0nvpr5ry86by1dm7mp2w5p534qg4c9dpdich3x13gbbp9vazc7h6";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/po-mode";
- sha256 = "0km19n87iqd6m6n23h46b6225zyvava9jbx6b8frna3sjwb4ls7w";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38e855cde9264bff67016d23e7e5e00f113c55bf/recipes/po-mode";
+ sha256 = "1w06i709bb04pziygdn7y47gcci7gybg0p7ncdsm07d0w7q14v2z";
name = "recipe";
};
packageRequires = [];
@@ -81145,6 +82779,32 @@
license = lib.licenses.free;
};
}) {};
+ poe-lootfilter-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "poe-lootfilter-mode";
+ ename = "poe-lootfilter-mode";
+ version = "20190330.417";
+ src = fetchFromGitHub {
+ owner = "jdodds";
+ repo = "poe-lootfilter-mode";
+ rev = "5ef06684cb2b17b090ee1f303c2b789fa71bc106";
+ sha256 = "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/006f39eaf8a87822fe8becab1da2822ff6fc2beb/recipes/poe-lootfilter-mode";
+ sha256 = "0iw3a2lf0mnv3lamphy458nfyjjm1yvln1syfad49av3karca05z";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/poe-lootfilter-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
poet-client = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -81310,12 +82970,12 @@
melpaBuild {
pname = "poly-R";
ename = "poly-R";
- version = "20190323.1424";
+ version = "20190605.1403";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-R";
- rev = "3d90219d7e099ba65449681700ffc62cf88d9cc4";
- sha256 = "1327rqdhc0xaad2k5rjwma6wwky72a8bfqmw1wqy0d4wzbn2wbrf";
+ rev = "0443c89b4d2bc2ed235a0c017109c2dbd342aa02";
+ sha256 = "1v5djxwgqksf84pxfpgbm7qaz3yq5ha7cac0792p62pj1ydzvghi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-R";
@@ -81373,12 +83033,12 @@
melpaBuild {
pname = "poly-erb";
ename = "poly-erb";
- version = "20190317.723";
+ version = "20190605.1402";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-erb";
- rev = "5339b0ba665cbf62dc09571e9fbc5e824c5bf5e4";
- sha256 = "13bvgh0y4nlwxyxph7xs1m9akwb9cln2s5bnnn6fhwhgamsbqcvi";
+ rev = "304204f415b9e46ee36b64531b7d170540828335";
+ sha256 = "0v13ssv9fjardg5as832hkhlx7yhjcdkm3bdcdj0qy31cmvk6dzb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-erb";
@@ -81401,12 +83061,12 @@
melpaBuild {
pname = "poly-markdown";
ename = "poly-markdown";
- version = "20190317.652";
+ version = "20190605.1402";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-markdown";
- rev = "852755d339197ea5b2197b64a97d0b9c03b94e9c";
- sha256 = "00y510ky587frzpzbyi82rqngi8ifnfzd5r15lh9w34v3dxjif6f";
+ rev = "b0de1a9f3e4d7191b1b23b65ebf03dd0ac007afc";
+ sha256 = "0b6wlmhrpcw9g8rbw7q7k5fr2lgcp1rpy7d9p9f0gzn52yvcr4dr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-markdown";
@@ -81428,12 +83088,12 @@
melpaBuild {
pname = "poly-noweb";
ename = "poly-noweb";
- version = "20190317.652";
+ version = "20190605.1402";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-noweb";
- rev = "1ce8d4f5c69376255e7be03fd03aa3b3bc00cfb5";
- sha256 = "00n86lyrgffznspryc5h9bgqz5m0c0zwsxf9mlli62jf6c3wsd1q";
+ rev = "4e65cb22d6bca901021205257f867f868989c665";
+ sha256 = "1pnjg615i5p9h5fppvn36vq2naz4r1mziwqjwwxka6kic5ng81h8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-noweb";
@@ -81455,12 +83115,12 @@
melpaBuild {
pname = "poly-org";
ename = "poly-org";
- version = "20190320.1337";
+ version = "20190605.1403";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-org";
- rev = "28421de2993de4da1e1db3b34a1215ce3ccc1d8b";
- sha256 = "14f2752j55gj9is4prcx601km716vsq1fg25157bniiwd42vinqs";
+ rev = "8b0de75b1f9b65c22f7e3fbc205c9408214c8a1f";
+ sha256 = "04x6apjad4kg30456z1j4ipp64yjgkcaim6hqr6bb0rmrianqhck";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-org";
@@ -81482,12 +83142,12 @@
melpaBuild {
pname = "poly-rst";
ename = "poly-rst";
- version = "20190317.735";
+ version = "20190605.1403";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-rst";
- rev = "62a5cb9403f48f5c060244903ba0d14cb6822f6c";
- sha256 = "1m2w9rlgpvdki083vyl9916fjb7dl7rd418kha3la46wks7z8ca5";
+ rev = "1a7d38e1c1d35cf64e4dad408db486a8e1931e61";
+ sha256 = "1xzbznm43hsvmg2ibqa6a1rymfy85nagjsxadn5mj9r04ivhf2fd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d3fb89f58903245a8df75060ddd695a05cedb322/recipes/poly-rst";
@@ -81537,12 +83197,12 @@
melpaBuild {
pname = "poly-slim";
ename = "poly-slim";
- version = "20190320.1342";
+ version = "20190605.1403";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-slim";
- rev = "1b9fe0fc9fb7f65975be22322d17dc49bdac7c4a";
- sha256 = "1czjanp9h4l7jry2gkb7596zhdmh3m29931npfdk1fb0lafrqhik";
+ rev = "a4fb8166d110b82eb3f1d0b4fc87045c3308bd7d";
+ sha256 = "06kwhmw5r5h4bsaqscr7dl3rfsa6wp642597zcmzdly94h26iwy9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-slim";
@@ -81563,12 +83223,12 @@
melpaBuild {
pname = "polymode";
ename = "polymode";
- version = "20190406.303";
+ version = "20190605.1359";
src = fetchFromGitHub {
owner = "polymode";
repo = "polymode";
- rev = "0327dcac0f25e175e26f3774c24683d6bd6fc7a0";
- sha256 = "0g0mkvk0ky8akm7bpf78n2zm4a52m89aiq0bfc2y87dgpbnvjyp4";
+ rev = "82a0c3d71cc02e32a347033b3f42afeac4e43f66";
+ sha256 = "04v0gnzfsjb50bgly6kvpryx8cyzwjaq2llw4qv9ijw1l6ixmq3b";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/polymode";
@@ -81590,12 +83250,12 @@
melpaBuild {
pname = "pomidor";
ename = "pomidor";
- version = "20180614.128";
+ version = "20190523.714";
src = fetchFromGitHub {
owner = "TatriX";
repo = "pomidor";
- rev = "8859aecdb48b76a36c5e251793da0f108b2dfeb4";
- sha256 = "07amyi7i6jb8byv4gmyhadiyyqwpd9d64aayr826x7pnzx5gcg5s";
+ rev = "590e64d316d9210bd00cb4eb39d2f07ddc16809a";
+ sha256 = "0001k4p09il5f20s0jgyi96wzslfcgv3y35wfxj771gixlacnrhi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0d4f313081594df23f357c40feb456847d8bd0/recipes/pomidor";
@@ -82007,12 +83667,12 @@
melpaBuild {
pname = "posframe";
ename = "posframe";
- version = "20190407.549";
+ version = "20190605.2006";
src = fetchFromGitHub {
owner = "tumashu";
repo = "posframe";
- rev = "11c2fa2d6e0236f20c83da86c37b005c64b8c5cb";
- sha256 = "1m1vgv3ps99xdrvya7w7jlfm068ik3wswpl2hnr858vmyjp4ggi6";
+ rev = "e9547ab066da28a89daa3efe3301a36f3faaf6fc";
+ sha256 = "0w2vavml94gyrp10j6i44fgp1a59wnx6zhkp8cyfxyw0vjv44vcz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fa3488f2ede1201faf4a147313456ed90271f050/recipes/posframe";
@@ -82138,16 +83798,16 @@
melpaBuild {
pname = "powerline-evil";
ename = "powerline-evil";
- version = "20151112.710";
+ version = "20190602.2040";
src = fetchFromGitHub {
- owner = "raugturi";
+ owner = "johnson-christopher";
repo = "powerline-evil";
- rev = "98b3a102b6dba6632aa0755a7257300c9b164309";
- sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r";
+ rev = "b77e2cf571e9990734f2b30d826f3a362b559fd1";
+ sha256 = "1hs9jvl5lmfwr9k6qcnxjhd61zsmzq53ania1w5616gqa4qnjzhn";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a44108579409ab2aab3e75ccabffb207843ec1ee/recipes/powerline-evil";
- sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c1a92c8b5b92269773d314aa6cec4f0057291a68/recipes/powerline-evil";
+ sha256 = "1x5hvnjdrpn3c8z6m7xfk30qd5y58p3jcyqr48qx91d0109gk342";
name = "recipe";
};
packageRequires = [ evil powerline ];
@@ -82164,12 +83824,12 @@
melpaBuild {
pname = "powershell";
ename = "powershell";
- version = "20190113.45";
+ version = "20190421.1338";
src = fetchFromGitHub {
owner = "jschaf";
repo = "powershell.el";
- rev = "87cba2c5e0510bda3915b8324ae67ac52adcae31";
- sha256 = "1dlyl8h539y75av144869ckz7difgmc1y2a2ngym7i6id22j1plp";
+ rev = "87826777bd3ebd53740be99b4546bfc11ccc625d";
+ sha256 = "038pcb7hv05yja9fvrmps6vh096a5rrdmyx9l8nisxqnsqf97ghv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7002c50f2734675134791916aa9d8b82b4582fcb/recipes/powershell";
@@ -82296,12 +83956,12 @@
melpaBuild {
pname = "prescient";
ename = "prescient";
- version = "20190227.1043";
+ version = "20190529.913";
src = fetchFromGitHub {
owner = "raxod502";
repo = "prescient.el";
- rev = "9d15739133bac00ae222c98211a6735f41d88f86";
- sha256 = "17ci1kdrw5j0h284i7akmjqnw465fawz5n2bqwqlpvzd6ghc2z8b";
+ rev = "1964f605f1f1e50c64a33aa3910cde7a23b45afc";
+ sha256 = "02q57qvw29ckrc53g5s9jicgxj87my30pk2iv8a865rvwbqqzs45";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ec02349e31531c347e4a43fbde56ae4386898cc6/recipes/prescient";
@@ -82428,12 +84088,12 @@
melpaBuild {
pname = "pretty-hydra";
ename = "pretty-hydra";
- version = "20190226.1946";
+ version = "20190530.1353";
src = fetchFromGitHub {
owner = "jerrypnz";
repo = "major-mode-hydra.el";
- rev = "2142be970874c679300e539a1d9d0f048eb72a7f";
- sha256 = "00hxv2nlzz4kgyzrldhqfnvnrhdcb82lm90xdbvn059f1v1zihn3";
+ rev = "a93eb369e0ffd553f1fe9da2cdb7cee2edd02206";
+ sha256 = "1sr4zhsjz83qq0cvzawhfpl5jgg4x1jxhhn01inz3v2030raf9gp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/865917fcc75c4118afc89b8bcc20ebdb6302f15d/recipes/pretty-hydra";
@@ -82788,16 +84448,16 @@
melpaBuild {
pname = "project-abbrev";
ename = "project-abbrev";
- version = "20181206.902";
+ version = "20190516.2221";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "project-abbrev";
- rev = "21572d56a70fc95ef2d3782310e634f1a2623bc5";
- sha256 = "0f8vd0yqa7k27jl9hxfqdfk6qs9q8p11j2iabdxi0v3wddhq3s2v";
+ rev = "b94f829bb24570782b9f6bbcfdec4b391091b778";
+ sha256 = "0lkliz9hycag1gf5hxvh7mrgl5my2vbkn52g4pkh2x7hsdkxhxjy";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11580720cfbbbaeed9d914abb8a48705c195b159/recipes/project-abbrev";
- sha256 = "0771r4a652r3sqb601q5j6348kx1741s7svzxyfr2a4lspfffvqb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/project-abbrev";
+ sha256 = "12d0w3b9fh7hdi1qwm13s535k574xfh3ck48zpsv3jlxr59q5bqw";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -82946,12 +84606,12 @@
melpaBuild {
pname = "projectile";
ename = "projectile";
- version = "20190402.2319";
+ version = "20190603.2330";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "projectile";
- rev = "5bd9db6f4b0a9e1c27136561b134a4d119552cdb";
- sha256 = "1k9r5ssm4wavypd8m5mb64fgia68jzpkk1p0p598qcywvbxlbw35";
+ rev = "fd85829ef2bdb8b2c183ea1b3ccfd50925824d78";
+ sha256 = "0kf5izn62c647y9axhchjcc1s40h0khk5ry0jpb3p32lv71b4xvf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile";
@@ -83021,6 +84681,7 @@
};
}) {};
projectile-git-autofetch = callPackage ({ alert
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -83029,19 +84690,19 @@
melpaBuild {
pname = "projectile-git-autofetch";
ename = "projectile-git-autofetch";
- version = "20190103.1235";
+ version = "20190417.1259";
src = fetchFromGitHub {
owner = "andrmuel";
repo = "projectile-git-autofetch";
- rev = "c6b4b99046122bc965e25cd20c737483d84fa8cc";
- sha256 = "08hs4pbx0bw9lsfkc9za66am9ayyshlys5jrdh2aln1rfxrrr6hj";
+ rev = "8d8d090fdff42671e9926f095deb3448d24730b1";
+ sha256 = "1x1x1hn8k6hpj1vljbgmgznvgnky75xg4scy5y57k937pvkmyg6j";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7fdfdeb69fd78fc1bb2c62392f860a8c434f1762/recipes/projectile-git-autofetch";
sha256 = "0m0raddsw5yvjrw2v6bdaswffmva8y9hxksdgf9axpvrd3rzlk9n";
name = "recipe";
};
- packageRequires = [ alert projectile ];
+ packageRequires = [ alert emacs projectile ];
meta = {
homepage = "https://melpa.org/#/projectile-git-autofetch";
license = lib.licenses.free;
@@ -83089,12 +84750,12 @@
melpaBuild {
pname = "projectile-rails";
ename = "projectile-rails";
- version = "20190110.208";
+ version = "20190421.1201";
src = fetchFromGitHub {
owner = "asok";
repo = "projectile-rails";
- rev = "78f5cbe2c212ce19d4732212c46472d1c412659f";
- sha256 = "09aby7yxk28rqz0vaps889idl5n41wj72pa0dr7bqmidq8i5jv4h";
+ rev = "3f8226c1136bd91bc919dce27cf952742aa254d0";
+ sha256 = "14cr1sgl2ln7xq25740fmggdiza2i791v9yafrdf2m6rhx50zksr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails";
@@ -83336,12 +84997,12 @@
melpaBuild {
pname = "promise";
ename = "promise";
- version = "20190405.105";
+ version = "20190414.2350";
src = fetchFromGitHub {
owner = "chuntaro";
repo = "emacs-promise";
- rev = "f237a52200b514d642a5e89f1437b0245f063e5d";
- sha256 = "0k8bdz5lnipyj1bnyf3vwaqyd1y7wc6mxavqigv435r04520fmx7";
+ rev = "7ac038c9ef96f07b14919dd2ae648dce82324510";
+ sha256 = "0vj4ykfs4xd9711gsslplxk93iq0nw2w5kx27prqdlf5vx8jv3mh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3eaf5ac668008759677b9cc6f11406abd573012a/recipes/promise";
@@ -83361,12 +85022,12 @@
melpaBuild {
pname = "prompt-text";
ename = "prompt-text";
- version = "20160106.609";
+ version = "20190407.2010";
src = fetchFromGitHub {
owner = "10sr";
repo = "prompt-text-el";
- rev = "3cc486c070b7a7c806c8d6002f9ba4979f56107d";
- sha256 = "1hv4p1x5sli5lplm8hl6frxmwvbc1vmamgj9m2ryk17ykqmr05r5";
+ rev = "b842bf13c53d0a2bd2bc7a00d37cc713d69fa9e9";
+ sha256 = "016gs6llc5p0p0sxn0syyq9ra8bkhvfx5x37a1fy0nkhv8jg33dv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/17d2bc3e53865fe8c98aabb6ef0ad1d10fcb1061/recipes/prompt-text";
@@ -83413,12 +85074,12 @@
melpaBuild {
pname = "proof-general";
ename = "proof-general";
- version = "20190212.633";
+ version = "20190531.1518";
src = fetchFromGitHub {
owner = "ProofGeneral";
repo = "PG";
- rev = "8f90ac961c22099a615c03ed07576aaef820e06d";
- sha256 = "07rwy1q0pii1k7z18hpfs768w07n7qg0wrvcqkrjfii3hx19vbwf";
+ rev = "9ebfbb6abbd5480b434ceadebec824d7c8804e73";
+ sha256 = "1p7i3ms6lny3yr7wrdpazchxryai329vx43qgvbqdrh51kdxyfvv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/135c8f2a04739145b500b8742a697907e398d270/recipes/proof-general";
@@ -83694,12 +85355,12 @@
melpaBuild {
pname = "psession";
ename = "psession";
- version = "20181214.2338";
+ version = "20190502.1138";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "psession";
- rev = "983830eabdbea2bdd72fcdf2f05ca5c271fd4122";
- sha256 = "09vw3wn69y712b9vpcr8m95if7xn63k3hsc6w9jwkz3xnlrz66q4";
+ rev = "2557ca67a7a81f5270fb98a0b0a92838d09343b8";
+ sha256 = "0wspxsis3p2zm1f0wfxmi4dpyswcip6jzx2jcan7j2mqiwld6l33";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession";
@@ -83776,12 +85437,12 @@
melpaBuild {
pname = "pubmed";
ename = "pubmed";
- version = "20190316.1651";
+ version = "20190502.1421";
src = fetchFromGitLab {
owner = "fvdbeek";
repo = "emacs-pubmed";
- rev = "195e5f6e0cb7b5c20723c2b6adc3ac19543cfcdc";
- sha256 = "0c37kk8lzhlywlg7gagk62c7k21zy6cg9lhz0jy5sab1icrdzps5";
+ rev = "67fbb6e8834feda85e8301adc5c17d9e38395d6a";
+ sha256 = "15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ee84560c15e7389e902fb4a4c548c08be231de82/recipes/pubmed";
@@ -83828,12 +85489,12 @@
melpaBuild {
pname = "pulseaudio-control";
ename = "pulseaudio-control";
- version = "20190331.18";
+ version = "20190419.2241";
src = fetchFromGitHub {
owner = "flexibeast";
repo = "pulseaudio-control";
- rev = "638a02b0b59cd9662abbbb9dc947d0fed115b72d";
- sha256 = "0kiqm9vcp2gi4a4c7isgffppx4bchf03vwlx8h70yhfycns2v0bk";
+ rev = "552206807c9af6ec150540bbdda5d08393196e0a";
+ sha256 = "1bb14xcglvamvlqsx3dz75zq5ws17774g32484x5ksfpajpibwas";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7964f226e12c3a27ff856e28f4b030ebf304aea2/recipes/pulseaudio-control";
@@ -83951,6 +85612,7 @@
};
}) {};
purescript-mode = callPackage ({ cl-lib ? null
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -83958,19 +85620,19 @@
melpaBuild {
pname = "purescript-mode";
ename = "purescript-mode";
- version = "20190227.1345";
+ version = "20190522.1530";
src = fetchFromGitHub {
owner = "purescript-emacs";
repo = "purescript-mode";
- rev = "43d8d205506d10ef829e77079fc4b8c569998f44";
- sha256 = "0xbqy408532gnknfj78cnp9raqcmfk4scaxym7nzb8ffh2bd721n";
+ rev = "8db1d0243c03da31adac4d7c5287407a4df6aff2";
+ sha256 = "07z5m8h5a1dhqlzf8wqyxqw2mz3kxzjfpb0p7az3bhs3xsxq6q1q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/55462ed7e9bf353f26c5315015436b2a1b37f9bc/recipes/purescript-mode";
sha256 = "1g30xbv3xvv52r873465a2lp6fnws9q8dz277697qm0mgxkpimbp";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/purescript-mode";
license = lib.licenses.free;
@@ -84528,12 +86190,12 @@
melpaBuild {
pname = "pyim";
ename = "pyim";
- version = "20190405.2125";
+ version = "20190530.1831";
src = fetchFromGitHub {
owner = "tumashu";
repo = "pyim";
- rev = "a80a203b7149d927a92d9bc27278117df44f05f2";
- sha256 = "1z6yinn5azn4g1g6y4p55a579xm3rhhn9sxbmjlpd2ff66ahi8z3";
+ rev = "50e2b0d825dde89639fe1257fad8c9bf450b2c7f";
+ sha256 = "1gf0cix5gc20ab9rsvj13rdnvcsqsjkbaql7xbv5lyl555dlbpn7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/151a0af91a58e27f724854d85d5dd9668229fe8d/recipes/pyim";
@@ -84944,12 +86606,12 @@
melpaBuild {
pname = "python-mode";
ename = "python-mode";
- version = "20190313.409";
+ version = "20190503.938";
src = fetchFromGitLab {
owner = "python-mode-devs";
repo = "python-mode";
- rev = "e916afc06f2a9bc1f02d93081ee0ee1ec2e8740b";
- sha256 = "03vc619iq7hd5q7m5rlxlq7h1irc288x2hr6gnm58b711gyax5fk";
+ rev = "9ba43eaac8200e73fbd4cf938ecece4b8bfadaa0";
+ sha256 = "0rdv5zs15rl7d6lla3k1wh4c1icxrbn6pbd9jqrrm96a5q8hm8v9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode";
@@ -85580,12 +87242,12 @@
melpaBuild {
pname = "quiz";
ename = "quiz";
- version = "20170818.415";
+ version = "20190525.506";
src = fetchFromGitHub {
owner = "davep";
repo = "quiz.el";
- rev = "b7c8fc14ebad50ca170c40e4ecb07b7f49f054ba";
- sha256 = "1kxivd572ww5c6m7d3183ikiyrgvmvhbs8kkyhpc9y3y8ziaid1x";
+ rev = "570bf53926d89282cdb9653bd5aa8fe968f92bbd";
+ sha256 = "1f752fsrk7z8q2dd40r46hzhhf1kyj0vid9g0vv5dkkzmabms59q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/23d547c0d69d8f5d1e9983e3669a63dffaede2b3/recipes/quiz";
@@ -85638,12 +87300,12 @@
melpaBuild {
pname = "racer";
ename = "racer";
- version = "20190319.1756";
+ version = "20190524.1950";
src = fetchFromGitHub {
owner = "racer-rust";
repo = "emacs-racer";
- rev = "9d8984ef384932e0e7647ecb057db7ad1e9833f1";
- sha256 = "10q26bkv26fgdcvs6cn2vb2i4359yn7a4n3r7vs8qfpnck7i0j8x";
+ rev = "f9fc3e9847210867f4a621ceeddcb1724cc0001b";
+ sha256 = "1basr4b7nv525yiq1hrncxiglhzbcxhgq5pnq53d23fv63cn994p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/97b97037c19655a3ddffee9a86359961f26c155c/recipes/racer";
@@ -85661,24 +87323,23 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild
- , s }:
+ , melpaBuild }:
melpaBuild {
pname = "racket-mode";
ename = "racket-mode";
- version = "20190405.745";
+ version = "20190603.1849";
src = fetchFromGitHub {
owner = "greghendershott";
repo = "racket-mode";
- rev = "b2681c50afd180ed3a89345e015926eb31dba30d";
- sha256 = "038f03y8nmzfjdbxcyfg6sd6y9zimlc9yvcs9lggvps1ni2y4j58";
+ rev = "efba679bdb9d024c36024945da4518663f6f8f15";
+ sha256 = "0h4g45ixdl0x1izpac99amz63c9sb4i45k7qwr0m4kk6jly0c5hd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9af8dea03aba378f21c6109faf48278b4d2bf59f/recipes/racket-mode";
sha256 = "0cmlz314w5227br0vns5d7jhpspv1byzalgzv8f9v2qjyvk6jvsn";
name = "recipe";
};
- packageRequires = [ emacs faceup s ];
+ packageRequires = [ emacs faceup ];
meta = {
homepage = "https://melpa.org/#/racket-mode";
license = lib.licenses.free;
@@ -85948,12 +87609,12 @@
melpaBuild {
pname = "ranger";
ename = "ranger";
- version = "20170817.857";
+ version = "20190411.2324";
src = fetchFromGitHub {
owner = "ralesi";
repo = "ranger.el";
- rev = "6bbff5df2e55f56047fca5058d9ca93ba4963aef";
- sha256 = "000dqqy5fbic8rwyndchj5pjmzad2yfa7z3xzi84dla6vhv15q6p";
+ rev = "53096cd1296aaae4308e62b52de01d487a353271";
+ sha256 = "1s8inrf9vjf7550jhn03zha85pmn46mvdxz3dmx2vfb184hv46cx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0207e754f424823fb48e9c065c3ed9112a0c445b/recipes/ranger";
@@ -86230,12 +87891,12 @@
melpaBuild {
pname = "rdf-prefix";
ename = "rdf-prefix";
- version = "20180127.1006";
+ version = "20190511.512";
src = fetchFromGitHub {
owner = "simenheg";
repo = "rdf-prefix";
- rev = "164136d05505275d42d1ca3a390f55fcc89694b8";
- sha256 = "18jp3yynnk2248mzwf8h62awfw8fh25m5ah5di0dg62xw56l9nig";
+ rev = "6daf675d96aa4a0bc78adc93560b791a77651b22";
+ sha256 = "0mxzpbmaw8qz6ykyhdhq0jvxsnbgsb98psjy0w99jpxkg09fas17";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f083bd629697038ea6391c7a4eeedc909a5231/recipes/rdf-prefix";
@@ -86428,8 +88089,7 @@
license = lib.licenses.free;
};
}) {};
- realgud = callPackage ({ cl-lib ? null
- , emacs
+ realgud = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -86440,25 +88100,19 @@
melpaBuild {
pname = "realgud";
ename = "realgud";
- version = "20190121.1643";
+ version = "20190603.1457";
src = fetchFromGitHub {
owner = "realgud";
repo = "realgud";
- rev = "1da5f2b5161bd5d5671b38ab182084e2d89e7c45";
- sha256 = "19ijc3v1wz01631hyc3x1bgx9kczhdzc99jlxxfq9y5yr8p1s2qa";
+ rev = "593ccf1347f823559011112ace1f5c4e2a11ce65";
+ sha256 = "1b4x7ymnsv39isn5j8gw8xvcdr75amg66s8iyirlcwgbyzil3y8f";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7a21be3673962d5706f12efa5179a5426bdce82b/recipes/realgud";
sha256 = "14n6d3jfhpa29nf4ywdg3aw4i51lfkr99b4z8q4833pmpz1jbq2c";
name = "recipe";
};
- packageRequires = [
- cl-lib
- emacs
- load-relative
- loc-changes
- test-simple
- ];
+ packageRequires = [ emacs load-relative loc-changes test-simple ];
meta = {
homepage = "https://melpa.org/#/realgud";
license = lib.licenses.free;
@@ -86469,52 +88123,197 @@
, fetchFromGitHub
, fetchurl
, lib
+ , load-relative
, melpaBuild
, realgud }:
melpaBuild {
pname = "realgud-byebug";
ename = "realgud-byebug";
- version = "20180308.1923";
+ version = "20190520.440";
src = fetchFromGitHub {
owner = "realgud";
repo = "realgud-byebug";
- rev = "de603d58aa9ef72a2619247a0234fccf6bc2cc9a";
- sha256 = "1hk2z7axy1v5yvx4xgkisfk00varq5rf8j88f0l63ywylyw1fwhl";
+ rev = "f8f20b92c6b13f75cc9797921c0e28d3def48b1c";
+ sha256 = "1f6g5ajimha2n45dykc2vrpdd25ylwrn98fijj3i9m8n0f7jyjrn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-byebug";
sha256 = "1akv9raa6yb5h4lsvz7mxlnd9l7adg2rpgw7ski6036n6facn18a";
name = "recipe";
};
- packageRequires = [ cl-lib emacs realgud ];
+ packageRequires = [ cl-lib emacs load-relative realgud ];
meta = {
homepage = "https://melpa.org/#/realgud-byebug";
license = lib.licenses.free;
};
}) {};
+ realgud-ipdb = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-ipdb";
+ ename = "realgud-ipdb";
+ version = "20190603.1909";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-ipdb";
+ rev = "3642767a286e0542bf03cbb240cf47b2a89ad3f5";
+ sha256 = "1lgqh80w4ksa4a3zyxdz812jn0yg5xn1z5z0c23sf5vqzzxkzx7h";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c8182de5fceca3fc517a21abdb8d6e9c860e041b/recipes/realgud-ipdb";
+ sha256 = "134b1n2fci0z85cyvqjq3i5wb3pm110src87la6kq2pin1nrdkcm";
+ name = "recipe";
+ };
+ packageRequires = [ emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-ipdb";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-jdb = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-jdb";
+ ename = "realgud-jdb";
+ version = "20190524.2057";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-jdb";
+ rev = "5e3211a17a8282d2d0027e73149e01034082bc41";
+ sha256 = "0d2qkzm09dxv9969xc74b5vvygn2kn0qxwl2y4pjjwhn4mw6gc37";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f03a731e4fbf2099b1ba0902ef514fd8c930d30/recipes/realgud-jdb";
+ sha256 = "02vlzv8lvm4vcw5c3ajn8lb499jdsrlg92kwib1hjwb2smjkb6ba";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-jdb";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-lldb = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-lldb";
+ ename = "realgud-lldb";
+ version = "20190604.2";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-lldb";
+ rev = "f2f77d6ddfa42430ead400eaf81c605c3a04dead";
+ sha256 = "0n8nagjhgyg2l0qymx4rjzigxnhhks86s8flpndsfyhzh98b8qbm";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e40b575cc22fa7b4773cf617862495e93565e4/recipes/realgud-lldb";
+ sha256 = "1l43h14a42cpgjcmbhk9vkk87z4ap9rdz7jrz8id666qxbza5xzg";
+ name = "recipe";
+ };
+ packageRequires = [ emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-lldb";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-node-debug = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-node-debug";
+ ename = "realgud-node-debug";
+ version = "20190525.934";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-node-debug";
+ rev = "72e786359ce9dace1796b0d81a00e9340e9c90ad";
+ sha256 = "1zn465bikzv1aizjjcnzsx105pdwwarqmd1fij82rhrspc8p8zis";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50a3644b62f61622169c1aa109db80b1f53d3d8a/recipes/realgud-node-debug";
+ sha256 = "0mw2sl9g8j08v40g5x2ai52i5ljvbxvcq37jwaz7vwdkafpnfyis";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-node-debug";
+ license = lib.licenses.free;
+ };
+ }) {};
+ realgud-node-inspect = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-node-inspect";
+ ename = "realgud-node-inspect";
+ version = "20190523.551";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-node-inspect";
+ rev = "e0f18442d759b8ce4479c01e090975b62270257d";
+ sha256 = "1w4jxz2lc2ia9zy9cx1kwvjsn5z53wnkybn9j80ijly431m4hlxg";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88388c61c0402534ccf9751b3cec318b62d72655/recipes/realgud-node-inspect";
+ sha256 = "1mfhvhww0w7mksfmgfjd2s8wa10k7q2sqm6s55nm71jyx5h48k07";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-node-inspect";
+ license = lib.licenses.free;
+ };
+ }) {};
realgud-old-debuggers = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
, fetchurl
, lib
+ , load-relative
, melpaBuild
, realgud }:
melpaBuild {
pname = "realgud-old-debuggers";
ename = "realgud-old-debuggers";
- version = "20170316.31";
+ version = "20190520.450";
src = fetchFromGitHub {
owner = "realgud";
repo = "realgud-old-debuggers";
- rev = "1e1d573a6ba731afbe68c1309a316457ca3fbb94";
- sha256 = "1gk8k9lqbvqq4ngw0ffp3sqhkaj23n54m3ndh2ba9gvlmx7mxm7g";
+ rev = "0fad38283e885c452160232e01adf3f6ae51983b";
+ sha256 = "01x819j80yc5ybwaz5xglibv88r2aah5gqxwi1q9azd6f70zanvi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-old-debuggers";
sha256 = "14kig9yxss9nfc0cc54ph80pbdrmh1mdazypiwxbnj2nk1dk3qsv";
name = "recipe";
};
- packageRequires = [ cl-lib emacs realgud ];
+ packageRequires = [ cl-lib emacs load-relative realgud ];
meta = {
homepage = "https://melpa.org/#/realgud-old-debuggers";
license = lib.licenses.free;
@@ -86525,55 +88324,87 @@
, fetchFromGitHub
, fetchurl
, lib
+ , load-relative
, melpaBuild
, realgud }:
melpaBuild {
pname = "realgud-pry";
ename = "realgud-pry";
- version = "20160805.745";
+ version = "20190520.439";
src = fetchFromGitHub {
owner = "realgud";
repo = "realgud-pry";
- rev = "fca36075a223f6a4a643764199babe3d1dfde2ac";
- sha256 = "08jnav5v5q1mwgk9x100magm3jcprzfhmx8z6x8vcmp7xf79n1pp";
+ rev = "9f6151bde12d9b3a5d3f3ff18368c2ba4b2c44d3";
+ sha256 = "0spy9j93j8gf5qpc3l2r934nsgqzwgzsswb2zr2z0f3l06yxbqs6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-pry";
sha256 = "1f8qap30r26gg33i76474zk6fs3r9qjf7jrxpm4xwpbjraggqy3z";
name = "recipe";
};
- packageRequires = [ cl-lib emacs realgud ];
+ packageRequires = [ cl-lib emacs load-relative realgud ];
meta = {
homepage = "https://melpa.org/#/realgud-pry";
license = lib.licenses.free;
};
}) {};
- realgud-rdb2 = callPackage ({ fetchFromGitHub
+ realgud-rdb2 = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
, fetchurl
, lib
+ , load-relative
, melpaBuild
, realgud }:
melpaBuild {
pname = "realgud-rdb2";
ename = "realgud-rdb2";
- version = "20160303.43";
+ version = "20190520.446";
src = fetchFromGitHub {
owner = "realgud";
repo = "realgud-ruby-debugger2";
- rev = "e63eeed131517a9e8225f972c9f6c975c8121e41";
- sha256 = "0skaw5fzvqk56mfk3ciy9n85vznq1sxv6w575v3jd80w2dns4yay";
+ rev = "3594aa74f7afda3c3251bb2af7fe0e8ec6d621ae";
+ sha256 = "1nalr0yd1wvqdf81nidxmh9fr3ncqdjb706p6832fsmbpk7r9haw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-rdb2";
sha256 = "16pk034g26xnbsz0w9z8p76jiaraz8lvbf5hf0mmg1f5f4xlinz7";
name = "recipe";
};
- packageRequires = [ realgud ];
+ packageRequires = [ cl-lib emacs load-relative realgud ];
meta = {
homepage = "https://melpa.org/#/realgud-rdb2";
license = lib.licenses.free;
};
}) {};
+ realgud-trepan-ni = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-trepan-ni";
+ ename = "realgud-trepan-ni";
+ version = "20190528.1511";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-trepan-ni";
+ rev = "4cd936edcc89324a819b21aa1afd331c02e6bd3e";
+ sha256 = "0h0d8566km6v7rgiqx54lwazwwl929npxicg8dx8qw12q13vkk31";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2464e03d11cd660c3c9c760e16b90911151cf184/recipes/realgud-trepan-ni";
+ sha256 = "1p7sn1swmdyyzaaa5xza70md4pl2p15swyh7y3fbmpp35nabv9zi";
+ name = "recipe";
+ };
+ packageRequires = [ emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-trepan-ni";
+ license = lib.licenses.free;
+ };
+ }) {};
reason-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -86841,12 +88672,12 @@
melpaBuild {
pname = "rectangle-utils";
ename = "rectangle-utils";
- version = "20160914.2108";
+ version = "20190411.1057";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "rectangle-utils";
- rev = "6fe38fdd48ef5305a908b94a043a966ac3f2053a";
- sha256 = "08n3ah40gfgkbriwj2z3y0751vpvgz86qjdn6dxs4mghjrwr2545";
+ rev = "46f7e73340fee40c1ab9a4e766a08ae3fce83ebe";
+ sha256 = "0dcga10lg2bl1p259s78jib7pd03v183hima8aksfr0c84s438yq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1852b75c82822e97c39b7c7caeb2a32246171be4/recipes/rectangle-utils";
@@ -87081,12 +88912,12 @@
melpaBuild {
pname = "reformatter";
ename = "reformatter";
- version = "20190209.2001";
+ version = "20190529.1538";
src = fetchFromGitHub {
owner = "purcell";
repo = "reformatter.el";
- rev = "00413b21ec418f92f3c7d8235a809cf50a10f288";
- sha256 = "0hmi6c3kf7plg3pdcyiiwhl5ckdr5p43d9y9172kw89y6ivf4635";
+ rev = "b29fdd346d0d06bef4cafc75adbde51a46392e90";
+ sha256 = "0ahi9z3qpbg9zcb1fzbxqd6gb8ip44zdf9assimch7yklg5ph2ca";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/58de8cf8864867f7b3969f3a048a4844837078b4/recipes/reformatter";
@@ -87390,12 +89221,12 @@
melpaBuild {
pname = "renpy";
ename = "renpy";
- version = "20180907.1234";
+ version = "20190419.1049";
src = fetchFromGitHub {
owner = "billywade";
repo = "renpy-mode";
- rev = "cf9c9ead6084210a4c0290a0d999a099b8d00a81";
- sha256 = "1blv8f1qr0nd7j7ciyba05n5a4jijffqmchxjhl7nxljlghwiy27";
+ rev = "943e1af71d23128ff100d41d178ccffe28f97944";
+ sha256 = "1l2dglkbpb3d6c6cnifhngcjc4yy726mq6yic8x9409c6r0apn2n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cc928aed12275dc3780d7d8acc6ceca0f69ef63f/recipes/renpy";
@@ -87468,12 +89299,12 @@
melpaBuild {
pname = "repl-toggle";
ename = "repl-toggle";
- version = "20180501.328";
+ version = "20190430.13";
src = fetchFromGitHub {
owner = "tomterl";
repo = "repl-toggle";
- rev = "934f59478a5c5577795f9507e945d564be368510";
- sha256 = "13pgfqijfp0ad9h1rpcf0blppq3jv31wdgvpjndgi213vwrkk79j";
+ rev = "a36caac7649fbffbe30f7b06541c9efd723563fc";
+ sha256 = "12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/repl-toggle";
@@ -87812,12 +89643,12 @@
melpaBuild {
pname = "restclient";
ename = "restclient";
- version = "20190405.1308";
+ version = "20190502.1514";
src = fetchFromGitHub {
owner = "pashky";
repo = "restclient.el";
- rev = "236810ad1d4b13f27e85931c0d8bb3549a35e865";
- sha256 = "0f0hn91k6s4vkqzac3x9sma4sx78m4b6h7fpkc4jslv2v0b0dplv";
+ rev = "422ee8d8b077dffe65706a0f027ed700b84746bc";
+ sha256 = "067nin7vxkdpffxa0q61ybv7szihhvpdinivmci9qkbb86rs9kkz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient";
@@ -87917,12 +89748,12 @@
melpaBuild {
pname = "reverse-im";
ename = "reverse-im";
- version = "20180213.525";
+ version = "20190428.1011";
src = fetchFromGitHub {
owner = "a13";
repo = "reverse-im.el";
- rev = "16931909115a922b1cf3846b1f60509b6590001f";
- sha256 = "0ccpnd1n9z18wpf8m9xyx5gps2xh5kxv8s1q2zan2zs9f46sz9pc";
+ rev = "e30815653aa81eac097f27be14886806d9df4ea4";
+ sha256 = "0i34q5bj5y0xnvc8d82w5vpfscl1nvqv584sd9kqpi81gy3qphrw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f282ebbed8ad01b63b0e708ab273db51bf65fdbb/recipes/reverse-im";
@@ -88011,6 +89842,33 @@
license = lib.licenses.free;
};
}) {};
+ rfc-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , helm
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "rfc-mode";
+ ename = "rfc-mode";
+ version = "20190525.1210";
+ src = fetchFromGitHub {
+ owner = "galdor";
+ repo = "rfc-mode";
+ rev = "5cdf7172e307c0e23bb5342c61263d4439292ede";
+ sha256 = "091yqk257z19rs9mcy6b52ll87s85s7fbsd235kzqmacfcqyjsmi";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a61d769cf7c61619a594337fe8a12ccc6a6fd6e/recipes/rfc-mode";
+ sha256 = "0z7krcfdyr8hblz8dc7apqlpn6sj2zwrjw4wh86js8vf7fiv8svy";
+ name = "recipe";
+ };
+ packageRequires = [ emacs helm ];
+ meta = {
+ homepage = "https://melpa.org/#/rfc-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
rg = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -88099,12 +89957,12 @@
melpaBuild {
pname = "rich-minority";
ename = "rich-minority";
- version = "20190321.658";
+ version = "20190419.436";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "rich-minority";
- rev = "04bc21b109c4507e16747b709d55f9be9553779c";
- sha256 = "15m39qqllkj1a328dyl23a830ix6m1f9sfmj19nwrsysxqik7vg6";
+ rev = "a03e693f6f9232cf75363aaaf1cb041f21675c19";
+ sha256 = "0nr5lazllp5qphllnmwrwiywkc5zd3a51ciwb8k0h8zw5axhp0v7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority";
@@ -88123,23 +89981,24 @@
, fetchurl
, lib
, melpaBuild
+ , ordinal
, popup }:
melpaBuild {
pname = "right-click-context";
ename = "right-click-context";
- version = "20181220.2128";
+ version = "20190528.1132";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "right-click-context";
- rev = "173c86b4b3fc187d54bcd85b4d7df27a5ee24965";
- sha256 = "1paljjwr6sfl835m24vj2j4x3zdh3whwayj6dvyfarbhhcwbwphj";
+ rev = "4b1a2cd2b3eaea2393d3696a36da8f42e386c23d";
+ sha256 = "1y0sa1k8pc8g6mzsqv3n34v2ziyvlr6l74409kh8673lp5r7cx1f";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f6963fc11d697b95ebbdaf7fe27c91a6229d08b6/recipes/right-click-context";
sha256 = "189nkxkc7lr2fm5qgmylmz6xv6mpphslj4fgpmr8ynnx9z3nxms2";
name = "recipe";
};
- packageRequires = [ cl-lib emacs popup ];
+ packageRequires = [ cl-lib emacs ordinal popup ];
meta = {
homepage = "https://melpa.org/#/right-click-context";
license = lib.licenses.free;
@@ -88337,12 +90196,12 @@
melpaBuild {
pname = "rmsbolt";
ename = "rmsbolt";
- version = "20181227.655";
+ version = "20190507.2309";
src = fetchFromGitLab {
owner = "jgkamat";
repo = "rmsbolt";
- rev = "246377bbff99734f30daedf2c47c03283c97e7c5";
- sha256 = "05v16g2drc57cjcdjqy9rk5m4i74v8raspgfsc62qbapy4kqvn78";
+ rev = "fcefc0509dd0a4ec2e02020c83e1c4a1101ef903";
+ sha256 = "1zbpp4ilf9kvjnxc0cgs90l02lmpp6pa905cahi441l2pn71kbld";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/798e7978f3ee32b3667956da8dc2dc7f005b6996/recipes/rmsbolt";
@@ -88364,12 +90223,12 @@
melpaBuild {
pname = "robe";
ename = "robe";
- version = "20190305.1346";
+ version = "20190520.1758";
src = fetchFromGitHub {
owner = "dgutov";
repo = "robe";
- rev = "69abadccf36220167f5d158dbdd3a801b3b89eff";
- sha256 = "087jl5b220i6g7shfbfxvxvv6zdlgagvrhwf4axllybif1p47nd3";
+ rev = "8190cb7c7beb8385dd3abf6ea357f33d8981ae8a";
+ sha256 = "1lqckmfxm2csh0as22bwf4rvbn5rwqry18xx9m5nfhfl57360q75";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/673f920d02fe761bc080b73db7d37dbf5b6d86d8/recipes/robe";
@@ -88440,12 +90299,12 @@
melpaBuild {
pname = "rope-read-mode";
ename = "rope-read-mode";
- version = "20190315.907";
+ version = "20190527.327";
src = fetchFromGitHub {
owner = "marcowahl";
repo = "rope-read-mode";
- rev = "3542bf0199d242729e198beac3305cc88497dc89";
- sha256 = "0l6r2g3i475nlzrwra38f6w5izl3ajd4dilf4yvcs66ah9bzhh2r";
+ rev = "ba7cb7e046a2353ae43c2c69fbe7dd2e703e0a20";
+ sha256 = "0vf6w4g1mcv4wf53zfmgcaaz0im09pa2pl8jmkf7dj34djlk4iw9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/14a674559aa485e92357a8b941304ae8167b9c3e/recipes/rope-read-mode";
@@ -88458,6 +90317,32 @@
license = lib.licenses.free;
};
}) {};
+ ros = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ros";
+ ename = "ros";
+ version = "20190602.809";
+ src = fetchFromGitHub {
+ owner = "DerBeutlin";
+ repo = "ros.el";
+ rev = "b5deea437bf8999907e381d3b16f8b0ec0185045";
+ sha256 = "0clvj1n9ib50spfbz6ph59kznz665vwv6h1dniisfp2fdw3l8i3f";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7df44ae0ba89a2c4089a39b212784a6a359f1521/recipes/ros";
+ sha256 = "1frlg1zn9ip2s3ija20rkmf880smk01jz6jclqkygx6kd4fsbi9m";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ros";
+ license = lib.licenses.free;
+ };
+ }) {};
rotate = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -88618,12 +90503,12 @@
melpaBuild {
pname = "rtags";
ename = "rtags";
- version = "20190320.817";
+ version = "20190410.915";
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "3232afea229ee090df61bc58786a1de65894f413";
- sha256 = "0z3xj5s1p14sk8na7xhx4kxc2kz3sg7z58iz5mlaf6mdna85cy3x";
+ rev = "de17d52cb18ca2228d04a9dc8b1c0ed04009d9e7";
+ sha256 = "0z42fm77135vsjszmvr0f3fq0gnvb17cnwafaz8cyqbz6ya0770c";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags";
@@ -88980,12 +90865,12 @@
melpaBuild {
pname = "ruby-test-mode";
ename = "ruby-test-mode";
- version = "20190313.805";
+ version = "20190412.209";
src = fetchFromGitHub {
owner = "ruby-test-mode";
repo = "ruby-test-mode";
- rev = "aa11267824561eb2b6a40b3dc5e2ad1cfb800f84";
- sha256 = "1k2mv2zgjsq8sn6lr5ad1xicb786xkvj8v588xavn1m50brn1gc9";
+ rev = "a7e2d912756269d7d88896a9fe0306475cd2b085";
+ sha256 = "0zlpvqpi2rq5ggrifmbp0hpjfaz8aplw0lkfy2d37rla8vsl9m0y";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f781a76a519afc0222cdf7255822a23e33745deb/recipes/ruby-test-mode";
@@ -89209,12 +91094,12 @@
melpaBuild {
pname = "rust-mode";
ename = "rust-mode";
- version = "20190304.536";
+ version = "20190517.1337";
src = fetchFromGitHub {
owner = "rust-lang";
repo = "rust-mode";
- rev = "a871d108c745276e93ff1dec7c65e2e5a57e6d8c";
- sha256 = "12yyc9d1b5jj2mqxdgjn95ah9dnxbl8jkq2mrxyrr9y34c6fycr6";
+ rev = "c62185ae1c6edf0335261f169241eb8ee9713ad5";
+ sha256 = "0jq8hb8j484vqnd743d2azw4zg1gn2j0l6h60bd0vcqd2hgag1nw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode";
@@ -89271,12 +91156,12 @@
melpaBuild {
pname = "rustic";
ename = "rustic";
- version = "20190318.1112";
+ version = "20190413.906";
src = fetchFromGitHub {
owner = "brotzeit";
repo = "rustic";
- rev = "e73f29bd273670a1193e595ff13641ec0675cfb4";
- sha256 = "1jfvvq4yz3ypw32q10g926ys1y4j1dyskpbl25qgqnw5dwjy7vsk";
+ rev = "4ab8f78167c81b040ca87caac5290ac69df8a2ff";
+ sha256 = "0rm62n5ad3caanxglmk2d2glgq2470c1yd4h7yzci3ay74p7szz8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/716c14a2ed8f5817c09c1ff530a4980c17b44bb3/recipes/rustic";
@@ -89627,12 +91512,12 @@
melpaBuild {
pname = "sass-mode";
ename = "sass-mode";
- version = "20161006.2326";
+ version = "20190501.1753";
src = fetchFromGitHub {
owner = "nex3";
repo = "sass-mode";
- rev = "37105f46f6ea3592039f2ea7d0463ae7f042616e";
- sha256 = "0gd0n5mh2f1gr2aq65d94zmvc2d04z2yb1baw24m0c11fai4y710";
+ rev = "247a0d4b509f10b28e4687cd8763492bca03599b";
+ sha256 = "1nhk12lhvkwdk8s8fx33p6rssi0gcfx2zkanq23rz6k28v5zi5yp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/sass-mode";
@@ -89702,12 +91587,12 @@
melpaBuild {
pname = "save-visited-files";
ename = "save-visited-files";
- version = "20170228.2250";
+ version = "20190430.808";
src = fetchFromGitHub {
owner = "nflath";
repo = "save-visited-files";
- rev = "33e8d223f622001f5792c52d8b36661e46b5834c";
- sha256 = "1lf03fhmgjz1pixfahdm3cbqs5vbp6bk4qgm2xkm51vzmp39hfim";
+ rev = "7eb71a6c4f9cb770b387fcef80231d9a9f648188";
+ sha256 = "01ampk085k0rb0bw85imwbs44p4wp20giiwwpbrv6f97bh1065m2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3f5979e2c2dbfc4e8e3b4d2881cf860c26f63db5/recipes/save-visited-files";
@@ -89829,12 +91714,12 @@
melpaBuild {
pname = "scad-mode";
ename = "scad-mode";
- version = "20180108.1809";
+ version = "20190413.546";
src = fetchFromGitHub {
owner = "openscad";
repo = "openscad";
- rev = "2de6815c7c2ade42e53e86751b9584ac4a5e1ef9";
- sha256 = "188wbnhdgk0820izing6hb7fca1d42hw9bnn405kms157kvcgqsi";
+ rev = "abf18ce66f6d6318c1e8ac8c1e2be7a172f5759e";
+ sha256 = "0ng5snm3l3psbbaf4lm1dlvwackx12hkix5lc1xfgfrandkrggnm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode";
@@ -90770,12 +92655,12 @@
melpaBuild {
pname = "semi";
ename = "semi";
- version = "20190405.739";
+ version = "20190517.1523";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "semi";
- rev = "13bb56eb978439957964032cc3118a8bea43d7f4";
- sha256 = "0328yis2hwzsgdi6rkrj5yhl5qlz48grnqkp3y56xyb6wf25cn96";
+ rev = "4cf114c95fb49ad75eb6916f678b45b04bad8122";
+ sha256 = "0gx9y5q1xb9d30yf1dcvmh9ixynr5cr5qk25pjnrhmblkhl5b2nz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e78849c2d1df187b7f0ef4c34985a341e640ad3e/recipes/semi";
@@ -90788,6 +92673,35 @@
license = lib.licenses.free;
};
}) {};
+ seml-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , htmlize
+ , lib
+ , melpaBuild
+ , simple-httpd
+ , web-mode }:
+ melpaBuild {
+ pname = "seml-mode";
+ ename = "seml-mode";
+ version = "20190530.2242";
+ src = fetchFromGitHub {
+ owner = "conao3";
+ repo = "seml-mode.el";
+ rev = "58eea4c2009b3e747d8e68a38417fcbf8a243c4b";
+ sha256 = "0q2anb8f43wsp1n021wx700f52w682av6zql9ivs4k7bsf9ldwz2";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8b8d877ba3164bf20f7f0e56ea564b88f493e/recipes/seml-mode";
+ sha256 = "0fmfnglxm57mhynzdsgs14qaxsw3nf83qbz3adknv63qymbfhgbw";
+ name = "recipe";
+ };
+ packageRequires = [ emacs htmlize simple-httpd web-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/seml-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
sendto = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -91627,12 +93541,12 @@
melpaBuild {
pname = "shimbun";
ename = "shimbun";
- version = "20190404.1600";
+ version = "20190516.2216";
src = fetchFromGitHub {
owner = "emacs-w3m";
repo = "emacs-w3m";
- rev = "28f7af52ec09f7c6feb608431f0afae59c69d4fa";
- sha256 = "0njaf3pwilcxac1hd1w7ilrcmjv2iaxb4zzkwjnk73f1smgcxy2m";
+ rev = "0cabba57549069a1dbd8207f97d439414da1dd51";
+ sha256 = "16ixcr3jknfqpkim00hiv5pnybldcc23379gbbjl6va0fmh2qgfw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c5a423647410357f0e63afba5b52bbe880fce969/recipes/shimbun";
@@ -91723,29 +93637,29 @@
license = lib.licenses.free;
};
}) {};
- show-marks = callPackage ({ fetchFromGitHub
- , fetchurl
- , fm
- , lib
- , melpaBuild }:
+ show-eol = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
melpaBuild {
- pname = "show-marks";
- ename = "show-marks";
- version = "20130805.749";
+ pname = "show-eol";
+ ename = "show-eol";
+ version = "20190516.1957";
src = fetchFromGitHub {
- owner = "vapniks";
- repo = "show-marks";
- rev = "97609566582e65eed0d0a854efa5c312f209115d";
- sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7";
+ owner = "elpa-host";
+ repo = "show-eol";
+ rev = "9342099be0e79d80a808c13fb1b438cc11598dcf";
+ sha256 = "1d5xb2b9ci1i0jv3vhad922zvvbixnybnhqhxr5vyj8gcnwn01rs";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2007ab49d123e324c8d7c09bca9de33468d98ab/recipes/show-marks";
- sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ae308e8c251b7a6942f7d9f739830986f7315ea/recipes/show-eol";
+ sha256 = "1k0ihimb4acc30qfmjj3hfpxknif3gzj0iikz23gizrsks7n5p1g";
name = "recipe";
};
- packageRequires = [ fm ];
+ packageRequires = [ emacs ];
meta = {
- homepage = "https://melpa.org/#/show-marks";
+ homepage = "https://melpa.org/#/show-eol";
license = lib.licenses.free;
};
}) {};
@@ -91880,6 +93794,37 @@
license = lib.licenses.free;
};
}) {};
+ shroud = callPackage ({ bui
+ , dash
+ , dash-functional
+ , emacs
+ , epg ? null
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , s }:
+ melpaBuild {
+ pname = "shroud";
+ ename = "shroud";
+ version = "20190524.204";
+ src = fetchFromGitHub {
+ owner = "o-nly";
+ repo = "emacs-shroud";
+ rev = "a7706ee48ef8dc67e6240377c61946c73a7fae3a";
+ sha256 = "0wvm4lxqcc1p8v7rpqal3bnqgnpk1gs7v18i83f6cvi5d88jkgdg";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e4334a47a173e9cfb1e803d5781317da27702d7/recipes/shroud";
+ sha256 = "0s7gap41y2ncnlbj2cc6b2l7q7qc8psxpbznkc71y53ch1mc9isg";
+ name = "recipe";
+ };
+ packageRequires = [ bui dash dash-functional emacs epg s ];
+ meta = {
+ homepage = "https://melpa.org/#/shroud";
+ license = lib.licenses.free;
+ };
+ }) {};
shut-up = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -91915,12 +93860,12 @@
melpaBuild {
pname = "shx";
ename = "shx";
- version = "20190309.1056";
+ version = "20190602.1425";
src = fetchFromGitHub {
owner = "riscy";
repo = "shx-for-emacs";
- rev = "a70f0cdc3c80b7b5b15d287d9b03e49f943bad57";
- sha256 = "0ihwiw9dxr6vln4dmg5dp75353ip9nc80hjfl1w3j0g3m8vhjbs2";
+ rev = "6b53896ad2d80f22454ae8b09dbaa7c352e4e37f";
+ sha256 = "1ps4by78ly7incc4s8767wbmcqfw9him3xdaif5akzg4qqymcayb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx";
@@ -91984,23 +93929,22 @@
};
}) {};
side-notes = callPackage ({ emacs
- , fetchFromGitHub
+ , fetchgit
, fetchurl
, lib
, melpaBuild }:
melpaBuild {
pname = "side-notes";
ename = "side-notes";
- version = "20190403.137";
- src = fetchFromGitHub {
- owner = "rnkn";
- repo = "side-notes";
- rev = "2319ee180a4a67175b9e95322cd30b3ac70a9bdf";
- sha256 = "05xaj5lhxaf07frzcayx5ybz778sgx8bplg5i75x24b7miqdcjl2";
+ version = "20190523.2132";
+ src = fetchgit {
+ url = "https://git.sr.ht/~pwr/side-notes";
+ rev = "6f14e0bc13f586ebfb4c801285aec0d5aac60ac9";
+ sha256 = "1s2yh4n9ik03gca1gp1fqdjax9wj8v5xjsj9kysns99nkg8mxy97";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/24a71c493adfb79bcd5172d65aa0751e9a6ab556/recipes/side-notes";
- sha256 = "07hrrplgvp3fvl10fsmxifnim8wz34w7fhzzzkxpdj1zlwls6h83";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9829ece8343a2a4309b5f7f5e324f0a1145e1e83/recipes/side-notes";
+ sha256 = "1adan5v04awjxahmn2ndqj8fns5hkk4am5jnhic9y036qdcpd9mv";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -92016,12 +93960,12 @@
melpaBuild {
pname = "sift";
ename = "sift";
- version = "20190104.917";
+ version = "20190521.123";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "sift.el";
- rev = "16bdffd2edf9300db50a81dc0b456da7ad6da86c";
- sha256 = "0wg7dnn721ff3h22s8bs2g4alrixzrry1m509md20qdklz9d6iwy";
+ rev = "33b2c9ff964fe53bb55b37429faaa4e903bead7a";
+ sha256 = "0cb8rcxl0jwpbgz9kk136l2ranficv8lk85fhvly1lpslbjljds9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sift";
@@ -92251,12 +94195,12 @@
melpaBuild {
pname = "simple-paren";
ename = "simple-paren";
- version = "20190315.1156";
+ version = "20190603.1136";
src = fetchFromGitHub {
owner = "andreas-roehler";
repo = "simple-paren";
- rev = "2530d5419301c80bc584ee4888ce2d048fba8add";
- sha256 = "0zcak1x2b7y0g29c0njblspawxjxkbkgyn3100wawfcswyav3nri";
+ rev = "8b03b71303070b05d5def3c8a2564e4b5e67098a";
+ sha256 = "1g508x8hf8zlvi6kz9r8jxavl11y47y2gjldjnc6z6ijiqisy3dm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e8886feb4a034fddd40d7381508b09db79f608f/recipes/simple-paren";
@@ -92601,12 +94545,12 @@
melpaBuild {
pname = "slack";
ename = "slack";
- version = "20190402.2337";
+ version = "20190519.16";
src = fetchFromGitHub {
owner = "yuya373";
repo = "emacs-slack";
- rev = "53816e274ce1c65fdfbd93fe0076fdaf79bbfbf2";
- sha256 = "0z9cbajam923v07fji0zmn240z3dgqv77csn9aanv5qpi6xkm1sp";
+ rev = "9ffc865097f5e4d779e2dace43b00a4a10305719";
+ sha256 = "1aagdhc68dcx8jnv7vbrl0vrz4dm28r0w5ml3z3bdvx0ng7ffir2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack";
@@ -92679,12 +94623,12 @@
melpaBuild {
pname = "slime";
ename = "slime";
- version = "20190319.230";
+ version = "20190531.834";
src = fetchFromGitHub {
owner = "slime";
repo = "slime";
- rev = "6945edd4a6532e84caca53fbb44b09ca14cd50cc";
- sha256 = "1g6pq3xri7r54whradbrc1kbsj96x65x3nqcpy2a05h4wqbn8psk";
+ rev = "01531b09debe1199d9726ed91c4672cd9587fb58";
+ sha256 = "12gi3zfn688k61szjyq2czhppwydlxbghpdzsjkcm9c8yyn4md7y";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/47609a81b81330820f6ddf717400dc7fa06aaabf/recipes/slime";
@@ -92736,12 +94680,12 @@
melpaBuild {
pname = "slime-docker";
ename = "slime-docker";
- version = "20181126.624";
+ version = "20190429.1857";
src = fetchFromGitHub {
owner = "daewok";
repo = "slime-docker";
- rev = "8b511c8c922f6944867f3cfaa7268988384064f1";
- sha256 = "0k7rvvyrrbbg9z46bxvzc4z4lnn9hjmv23m47ag191cqgag6r4fq";
+ rev = "151cec4a11965cdc00d231900a50f2c9f455fce2";
+ sha256 = "1sp6qi2i1cl41ga9y6fwf7q855y0b59fcbxdiggdhigwd5zslzcv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/15ec3f7208287161571c8fc3b29369ceabb44e5f/recipes/slime-docker";
@@ -92754,6 +94698,33 @@
license = lib.licenses.free;
};
}) {};
+ slime-repl-ansi-color = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild
+ , slime }:
+ melpaBuild {
+ pname = "slime-repl-ansi-color";
+ ename = "slime-repl-ansi-color";
+ version = "20190426.714";
+ src = fetchFromGitLab {
+ owner = "augfab";
+ repo = "slime-repl-ansi-color";
+ rev = "fdd0c7a75a217abca2ff16ab9281d55f392bd841";
+ sha256 = "0d3q9js5vybddniyirvvabljmxasgdqimjdpy7pn48hh4rd875di";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07fd791e2674ce3c773e2c213e045d6c7d12d848/recipes/slime-repl-ansi-color";
+ sha256 = "187xs5gfwjpkg31zhrrivjkp0j8wrr2xbjszr1hayzx5c8d7yz39";
+ name = "recipe";
+ };
+ packageRequires = [ emacs slime ];
+ meta = {
+ homepage = "https://melpa.org/#/slime-repl-ansi-color";
+ license = lib.licenses.free;
+ };
+ }) {};
slime-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -92917,12 +94888,12 @@
melpaBuild {
pname = "sly";
ename = "sly";
- version = "20190315.1523";
+ version = "20190523.1101";
src = fetchFromGitHub {
owner = "joaotavora";
repo = "sly";
- rev = "0a622da46251e620433d76f5ed98e40ef375ee01";
- sha256 = "0zzda1fjskgkr162j3zi7y23zi3k4kg1hbcpcb1jyyp0bq8vwla5";
+ rev = "ff9741599ab32b2182402307ad79049330669bf9";
+ sha256 = "098sc5h1ajqp68y0sfs2lf9a5jlr9s8v0mh2cvk87nyl77ld9crz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/974d8812a4c5e45221ce3c32ae72c15ed29665c3/recipes/sly";
@@ -92935,6 +94906,33 @@
license = lib.licenses.free;
};
}) {};
+ sly-asdf = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , sly }:
+ melpaBuild {
+ pname = "sly-asdf";
+ ename = "sly-asdf";
+ version = "20190428.1547";
+ src = fetchFromGitHub {
+ owner = "mmgeorge";
+ repo = "sly-asdf";
+ rev = "f6e434fad349ca54b151fd46db87423219d2b40c";
+ sha256 = "09giv87ys3gcmvnp8f60gg96v6ibcqwj3ysavr1jjh7nh047pjyi";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/09e59410bebffb8ab7e3236ee97f692665833f31/recipes/sly-asdf";
+ sha256 = "1fn1gm439x1axmslgcxinj8lx2vh7jq2qjbxpyjgv5lj9wia0bzi";
+ name = "recipe";
+ };
+ packageRequires = [ emacs sly ];
+ meta = {
+ homepage = "https://melpa.org/#/sly-asdf";
+ license = lib.licenses.free;
+ };
+ }) {};
sly-hello-world = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -93124,12 +95122,12 @@
melpaBuild {
pname = "smart-compile";
ename = "smart-compile";
- version = "20180315.2030";
+ version = "20190522.425";
src = fetchFromGitHub {
owner = "zenitani";
repo = "elisp";
- rev = "16ebc3c570f1949b8198fcc8663d6d26df32717a";
- sha256 = "0i5g7inbr90l3n1rsf4152ax4wkbw2q41ks9j3x6a956zxn8q92w";
+ rev = "366a4cdab1ad20105910bc24c4f3e4f8734e4eae";
+ sha256 = "1kk7ya14p4vpw31rzcgwq0pmay0wm3pg2j70fv5mms9ala1jyhsy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/93562afd7b62d7535b8010179ba6ac7e8e6280d0/recipes/smart-compile";
@@ -93277,12 +95275,12 @@
melpaBuild {
pname = "smart-jump";
ename = "smart-jump";
- version = "20190216.1206";
+ version = "20190422.1858";
src = fetchFromGitHub {
owner = "jojojames";
repo = "smart-jump";
- rev = "f8f98f1c032352f5d8d465a45b3b5b49cd9247d6";
- sha256 = "00v6a04ywxvikfwwgf85hr4p77xlm7shyai558ww3vf2gyhw1ily";
+ rev = "7df77da872dc836dbf032388fc6de82dbc9fa22c";
+ sha256 = "0w8jfsm6k2ayk0hg0imsm2vv8y5im5crlij9zi18iwa1mrqkmhsp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/52f29e14e61b28cd1637ca5d6bd878d91a71251f/recipes/smart-jump";
@@ -93329,12 +95327,12 @@
melpaBuild {
pname = "smart-mode-line";
ename = "smart-mode-line";
- version = "20190327.1241";
+ version = "20190527.456";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "268319aafee710ce8916c8612a5a8dcdce55fc1b";
- sha256 = "0j1m5xms3jgkd19baqnsyx2dzrc85c17nx49d1wklicn17kkawyb";
+ rev = "999be065b195f2eddb4e1b629f99038d832d44b7";
+ sha256 = "0jyvyn7pkqvyyv1rga3i10f4cwfbb0miacbib8lsrrhayrnal186";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line";
@@ -93592,12 +95590,12 @@
melpaBuild {
pname = "smartparens";
ename = "smartparens";
- version = "20190128.947";
+ version = "20190522.1534";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "smartparens";
- rev = "4d1571019080fec63b11474db32380b5fa4eb418";
- sha256 = "0r9lf7vsaw8z1dydi850azha1ig1ldid8yn6zx1da2fvfpgyly7v";
+ rev = "d3184b789177da42e2664c79d6c777c1ad69cdfd";
+ sha256 = "029amkz34ma3hdji4d1cm29b893x43vxdrsymys7h38nj86fmgpa";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens";
@@ -93998,12 +95996,12 @@
melpaBuild {
pname = "snakemake-mode";
ename = "snakemake-mode";
- version = "20181007.1950";
+ version = "20190411.1928";
src = fetchFromGitHub {
owner = "kyleam";
repo = "snakemake-mode";
- rev = "0cadd2bbd20aae1555561e81ed72fec43ec7296e";
- sha256 = "1i4cwdyhfyawfx07i63iqdx524mlphgbrl44wqqnnxrbdqm0h534";
+ rev = "d49c6580e5e01a5e80198f4026caf1d5a717f8a0";
+ sha256 = "0lxxd0a735sy4igncf6f0ljk2wy38x2pm1yq90gxymwi26j75ram";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode";
@@ -94148,6 +96146,31 @@
license = lib.licenses.free;
};
}) {};
+ soar-mode = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "soar-mode";
+ ename = "soar-mode";
+ version = "20190503.1143";
+ src = fetchFromGitHub {
+ owner = "adeschamps";
+ repo = "soar-mode";
+ rev = "ebb79789cd35530aea2c6d0eb4f4b280e97107d4";
+ sha256 = "1hy77nb1mv6np9424z8ri0rxjzh0pjizyx7vajxwd6m1zcv9xixq";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/818113ef6f93cc86fd30441d508012e5baa71893/recipes/soar-mode";
+ sha256 = "0jm4vllbppzs2vvkky96hwdv581142dxdfssrp6wsd56j38nr9sd";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/soar-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
socyl = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -94262,12 +96285,12 @@
melpaBuild {
pname = "solaire-mode";
ename = "solaire-mode";
- version = "20190312.2257";
+ version = "20190424.1742";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-solaire-mode";
- rev = "d648ad7c06554c14077335b631410df989536e97";
- sha256 = "0ajwf4ymqpskxjmd2fnr5g66wdncq1rsiv50yk3z0zxls6jap7d6";
+ rev = "77b12d27ae733adc6e8762b9e276e40c94d31f92";
+ sha256 = "1nz381ka62885sq81qzh2gnm1qbd6d13z6pksqnhivjs7qn0nnlq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode";
@@ -94290,12 +96313,12 @@
melpaBuild {
pname = "solarized-theme";
ename = "solarized-theme";
- version = "20190219.1751";
+ version = "20190513.5";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "solarized-emacs";
- rev = "74c6b5acd6892faeafd08029898663d81ab0a4d5";
- sha256 = "03pkc5bads459sx5a562ikpf5a6py0iqv7lihva7rqa8dj43jx0h";
+ rev = "c42a932e5c467c1ce12c42276d35bfb8f666e96d";
+ sha256 = "1m6grd8ym4azxi09ya236vil9ylqalli99p9fafd5zmzq647l840";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme";
@@ -94817,12 +96840,12 @@
melpaBuild {
pname = "spacemacs-theme";
ename = "spacemacs-theme";
- version = "20190116.1307";
+ version = "20190527.1809";
src = fetchFromGitHub {
owner = "nashamri";
repo = "spacemacs-theme";
- rev = "3eae3726faf39aa2a9e4c919a657f335282fefb7";
- sha256 = "0csj0mygv3mlvlxi600i5pkxjirqg58fa7rsh205733iyqxpff93";
+ rev = "89f8c9e20e4554ede5599d36e81496256708d88c";
+ sha256 = "15w2gzhhwqgyqd7nrbjgibw6cfn79453kialgs71wbydiv8q3aqf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme";
@@ -94999,12 +97022,12 @@
melpaBuild {
pname = "speed-type";
ename = "speed-type";
- version = "20190227.2200";
+ version = "20190526.253";
src = fetchFromGitHub {
owner = "parkouss";
repo = "speed-type";
- rev = "d905b79ba3c80c556562ce18a96760202826eedc";
- sha256 = "1pwi9f7iv604cv91j05r77bac2g17daya621g11lmfk1w09k35d5";
+ rev = "c98f9ebd4abf96db967f9c0dff9ccfa4b7f4035b";
+ sha256 = "1hjpxr5nb08g5vz7wmlf3zxazvj419528rfwdpkpbmdsjmy67fbf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c33b5bd15875baea0fd2f24ee8ec9414a6f7aa/recipes/speed-type";
@@ -95527,12 +97550,12 @@
melpaBuild {
pname = "sqlformat";
ename = "sqlformat";
- version = "20190113.1750";
+ version = "20190420.1556";
src = fetchFromGitHub {
owner = "purcell";
repo = "sqlformat";
- rev = "e9f5446f5a11304cfd1315d499838016752410c5";
- sha256 = "1wj9ls0858wxc9vrkzgs46j45gm0s7f4yhsaki64dm44l02l5xsy";
+ rev = "f7f46be6f06b83642c312151f3b5276f8830d9d7";
+ sha256 = "00z60y08likwqfd27ibvzhy62qs29i4d4y4vq3p3slx43rfdgvxs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6bdaa1ccae12f2ea779ac6989607d8027feac2c9/recipes/sqlformat";
@@ -95628,12 +97651,12 @@
melpaBuild {
pname = "srcery-theme";
ename = "srcery-theme";
- version = "20181231.503";
+ version = "20190526.527";
src = fetchFromGitHub {
owner = "srcery-colors";
repo = "srcery-emacs";
- rev = "561d83d5bbd4c1c939ad9f52863e75b969af320d";
- sha256 = "19zxc4f559s6x0qlkb181h1wpyd0mrdl08dc3fhn9h1hg1lmn11p";
+ rev = "a47a40c7c5d39d251bf15e45f184565c5240b33e";
+ sha256 = "1i3c7y0a7dzvb3c8pk69gvh33945bhm00j0fwl49yh7hg2d9w118";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2654fc05f55c7fab7d550b7db1d187edc9ff0f42/recipes/srcery-theme";
@@ -95706,12 +97729,12 @@
melpaBuild {
pname = "ssass-mode";
ename = "ssass-mode";
- version = "20180428.1339";
+ version = "20190520.1949";
src = fetchFromGitHub {
owner = "AdamNiederer";
repo = "ssass-mode";
- rev = "5f36a169a1ad497f1d7a465be386ffb5e1f80bcf";
- sha256 = "1n1q26p52i6c6i8svkr0bn91hliqm540y1fcz3jci8w2ws0s5x11";
+ rev = "c2c610abd85fecd171466bf5a9a4943bd62ffda5";
+ sha256 = "0vbh0nqbc7j2xjksk0xdfsrqfxd64fcqyladgk2v3jw0qply6ydw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3137f98aaa871a52f477b63d9c3b7b63f7271344/recipes/ssass-mode";
@@ -95809,12 +97832,12 @@
melpaBuild {
pname = "ssh-deploy";
ename = "ssh-deploy";
- version = "20190208.54";
+ version = "20190502.2208";
src = fetchFromGitHub {
owner = "cjohansson";
repo = "emacs-ssh-deploy";
- rev = "a57ae0c5906277e3a293ff1396325e26345bc475";
- sha256 = "0434c0r8ar8g4qn7isql6qivy1lf7jjdzr49gabxh8v8m1ysxy18";
+ rev = "009e9f81c8fc199e77815928bc8915643b019b32";
+ sha256 = "0y3jwn3qkmibrhgcbq6xcbfsgqjng6xi7fx1iimldhv14gg83gzq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy";
@@ -96960,6 +98983,31 @@
license = lib.licenses.free;
};
}) {};
+ sv-kalender-namnsdagar = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "sv-kalender-namnsdagar";
+ ename = "sv-kalender-namnsdagar";
+ version = "20190421.821";
+ src = fetchFromGitHub {
+ owner = "matsl";
+ repo = "sv-kalender-namnsdagar";
+ rev = "fff970f49c77abfc69e37817f25a939818420971";
+ sha256 = "0c6xjw1wh94llwh8qkf3bfzx05ksk0lsdrqdfqn3qkjnf3bkbbh2";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9327ea6ae9f4eaeeb6c0fb40bad77e403b4f55c/recipes/sv-kalender-namnsdagar";
+ sha256 = "1l89y6bjkw8px89qaw1ldfp6qmbm5nq09i6pr32n0k553670v4sr";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/sv-kalender-namnsdagar";
+ license = lib.licenses.free;
+ };
+ }) {};
svg-mode-line-themes = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -97129,12 +99177,12 @@
melpaBuild {
pname = "swift-mode";
ename = "swift-mode";
- version = "20190205.32";
+ version = "20190524.2316";
src = fetchFromGitHub {
owner = "swift-emacs";
repo = "swift-mode";
- rev = "13628495bdb2dcf30eea04412e1d3e3c80b8e999";
- sha256 = "1rl2rh1mzy7ig5wsd63lk3plrw7ivf2gir6w0ls2k0n2qxav3qb1";
+ rev = "3b6bdad3870ecb87190cfec993bdae0545a8dbaa";
+ sha256 = "1x68fli13nd8mwjzc5d7sk2kkjrw22z9xl3srvzh7qqfm8pwcd2r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/swift-mode";
@@ -97182,12 +99230,12 @@
melpaBuild {
pname = "swiper";
ename = "swiper";
- version = "20190407.1029";
+ version = "20190604.308";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "11b00073cb348aedf1d648a991bab71e20178268";
- sha256 = "1pylfgjrgcapya3dmivcaq5vnqx6h8lrq3xnx7sq11sw5fn6sw0n";
+ rev = "c11797a32f5456f23663d3b725d1fe8315867000";
+ sha256 = "0wnmya8cj7zy5kr8cw5yjddmshcvwc2dz8qnzkkxx9hxk5312h63";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper";
@@ -97371,12 +99419,12 @@
melpaBuild {
pname = "symbol-overlay";
ename = "symbol-overlay";
- version = "20190305.843";
+ version = "20190525.1925";
src = fetchFromGitHub {
owner = "wolray";
repo = "symbol-overlay";
- rev = "88c3ed02a06bea87ab7e41918b39e07bb3fc255b";
- sha256 = "0yr2n6vld3shlcsmfvwgkrnw0zxry0bfkzd8y1ylfr826qll2cmv";
+ rev = "ff16ccf472507ef4a4d8303e79bb12bf25345714";
+ sha256 = "1fik6k1fil2rl4z3dasm4c0jxjpc5f1nqqvmm1hn3il4263p0qsc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c2a468ebe1a3e5a35ef40c59a62befbf8960bd7b/recipes/symbol-overlay";
@@ -97609,12 +99657,12 @@
melpaBuild {
pname = "syntactic-close";
ename = "syntactic-close";
- version = "20181026.931";
+ version = "20190513.247";
src = fetchFromGitHub {
owner = "emacs-berlin";
repo = "syntactic-close";
- rev = "426975d73c474eb4e6a0af20f34455aac6e89610";
- sha256 = "1gyhz4mzd5gcfy9mx65aym8abz4wfdgy229aj1ng1c0j32fjk9rm";
+ rev = "2bd46845b664ae828c8b973839ef454cde501028";
+ sha256 = "1r1ia1yw43vvyk62d6r1k55zcz185777s10ix9bg3fllczdbyzcz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f2c15c0c8ee37a1de042a974c6daddbfa7f33f1d/recipes/syntactic-close";
@@ -97919,12 +99967,12 @@
melpaBuild {
pname = "tablist";
ename = "tablist";
- version = "20190129.1013";
+ version = "20190413.2343";
src = fetchFromGitHub {
owner = "politza";
repo = "tablist";
- rev = "af8703139d80be54b6c3077dd3e54ca7f3087043";
- sha256 = "15gnwainawzaidhclfqa2pyp6hgh172xxx127hvq6fabc1zm4ykg";
+ rev = "8079801527da1f596bc942162026328d7bdf6ad9";
+ sha256 = "11bm7z4kdxrq6pv93zwrmg729mnvqvhgmna9r2wqx2wyf87vdh00";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc0c6c02d609fb22710560337bd577f4b1e0c8f/recipes/tablist";
@@ -98123,12 +100171,12 @@
melpaBuild {
pname = "taskpaper-mode";
ename = "taskpaper-mode";
- version = "20190225.703";
+ version = "20190516.812";
src = fetchFromGitHub {
owner = "saf-dmitry";
repo = "taskpaper-mode";
- rev = "4b15b0f473a42ff40742cd790d06a08452276bef";
- sha256 = "1visq29mg5a0czx4bgq7jzqk4xbqbdhsxv85n4cji8h8rzagn21c";
+ rev = "0f31dca5dc87b5848736fb5ad574947940fd7a03";
+ sha256 = "05mv8aii1d0r1ayhj4wfbkrj0yd31jc88cv4d8rk9jc7f1zg73fd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f969b1cd58dfd22041a8a2b116db0f48e321e546/recipes/taskpaper-mode";
@@ -98389,12 +100437,12 @@
melpaBuild {
pname = "telephone-line";
ename = "telephone-line";
- version = "20190127.723";
+ version = "20190424.1234";
src = fetchFromGitHub {
owner = "dbordak";
repo = "telephone-line";
- rev = "17901f39119702cb6754ae6907549c7b795fe747";
- sha256 = "05mys10x3cn39b5ddn6ic2x9kh74gwm3g478bc3gbia5x5acl11c";
+ rev = "408e05e105e8e521735221f4c98fc358e007df3b";
+ sha256 = "123fxr4pjm7z3pidrwgcalb99s0vq3d6imkwgla6fyqyyn9wvag2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9c998b70365fb0a210c3b9639db84034c7d45097/recipes/telephone-line";
@@ -98689,12 +100737,12 @@
melpaBuild {
pname = "term-run";
ename = "term-run";
- version = "20190317.2055";
+ version = "20190529.43";
src = fetchFromGitHub {
owner = "10sr";
repo = "term-run-el";
- rev = "72db83728c22314522bdba692b145f48711052a0";
- sha256 = "149vska920b4c18gij7jgwyr8flzlym719jxpjch8m2bvwiya0dk";
+ rev = "fe8bf58814b167f887aaef98a148b8d5d8a11d3f";
+ sha256 = "0jzk0b07rj5a7va6nc93sjd4zii228gg63v1q49wg0hz2x2yjmfl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7cad6343104bfe5724e068660af79a6249010164/recipes/term-run";
@@ -99062,12 +101110,12 @@
melpaBuild {
pname = "texfrag";
ename = "texfrag";
- version = "20181001.53";
+ version = "20190508.2138";
src = fetchFromGitHub {
owner = "TobiasZawada";
repo = "texfrag";
- rev = "87ebd2653c39abe0b02a91ab2182e6fff562f6c7";
- sha256 = "0fi9cih597g6iigrvdyfxa9cc3irsvfcbzf74fkp62ggpmqlal90";
+ rev = "270a8a4b5dadddc5b226d9a9c6c7868ea6bfe86f";
+ sha256 = "18ahbksxg1i3gvsayx2mhkjd1p75c60x5f8d9a3abm4h50gs5mvf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/756649bbe2dc6233c66c3d128a8096be12231078/recipes/texfrag";
@@ -99259,6 +101307,7 @@
};
}) {};
theme-looper = callPackage ({ cl-lib ? null
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -99266,24 +101315,51 @@
melpaBuild {
pname = "theme-looper";
ename = "theme-looper";
- version = "20190402.1924";
+ version = "20190430.1827";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "theme-looper";
- rev = "a9195e1899dcd7dd5c630d053841c1ab958f1728";
- sha256 = "1mw2w09fr4s3621q4xb1027yf268hi1lc1ypabhgrckclih81aiy";
+ rev = "388138a238fbab9b4bc5ada0300c9bc5ef63d3f1";
+ sha256 = "0gab7ph1d7z0bjflqrj1y1lb4nk4c32bkpi943px0m5s5cjm54jv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/theme-looper";
sha256 = "018bixcbzri3zsasy1pp2qfvgd679ylpi9gq26qv9iwlfhlrpwgf";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/theme-looper";
license = lib.licenses.free;
};
}) {};
+ theme-magic = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , seq }:
+ melpaBuild {
+ pname = "theme-magic";
+ ename = "theme-magic";
+ version = "20190502.1527";
+ src = fetchFromGitHub {
+ owner = "jcaw";
+ repo = "theme-magic";
+ rev = "6e842aac9204f3561a9051ffd842a82f69960d73";
+ sha256 = "0fqwbn1blsrx11aic7i228f6dai7awyc4qh51dl03yrpw330b3zm";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/321c8ea8e095aa55d12f8dfb07001b9398adcbc5/recipes/theme-magic";
+ sha256 = "01vkwdfbhh7ifk1ziqmz257mjgn3ijmcva42ay4ih1n6268lr7k5";
+ name = "recipe";
+ };
+ packageRequires = [ emacs seq ];
+ meta = {
+ homepage = "https://melpa.org/#/theme-magic";
+ license = lib.licenses.free;
+ };
+ }) {};
therapy = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -99529,12 +101605,12 @@
melpaBuild {
pname = "tide";
ename = "tide";
- version = "20190321.911";
+ version = "20190507.1033";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "tide";
- rev = "f1a3d411a3b9b7992d24f53e6afa02840a652780";
- sha256 = "19m96firhn3rxjxxcn8d9sbbprhrmxg99lc5k665pdvdmdf1kbvx";
+ rev = "5224eae7da0a286d94a394620f9bbc8c7446a268";
+ sha256 = "0y8mpn6wlmi064crhszir1i1r2cj7dpb2i2c09rrbj1yjkgc92ri";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide";
@@ -99884,23 +101960,24 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild }:
+ , melpaBuild
+ , request }:
melpaBuild {
pname = "tldr";
ename = "tldr";
- version = "20180122.312";
+ version = "20190425.49";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "tldr.el";
- rev = "398b197c8d2238628b07e1b32d0f373876279f4c";
- sha256 = "0iq7qlis6c6r2qkdpncrhh5vsihkhvy5x4y1y8cjb7zxkh62w33f";
+ rev = "2ff0834bc58590f98bfece3efc5656d1b47c325d";
+ sha256 = "1qwx4hmqj6fbpmv230kgdv2qwv5jfmbf5kvdhcq48p4rak1r30qj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/45af2c5d1a36fcbf739812594c5cc878bf319a26/recipes/tldr";
sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9";
name = "recipe";
};
- packageRequires = [ emacs ];
+ packageRequires = [ emacs request ];
meta = {
homepage = "https://melpa.org/#/tldr";
license = lib.licenses.free;
@@ -99966,12 +102043,12 @@
melpaBuild {
pname = "toc-org";
ename = "toc-org";
- version = "20181108.821";
+ version = "20190603.103";
src = fetchFromGitHub {
owner = "snosov1";
repo = "toc-org";
- rev = "ebff38bfa4cc95476a20a349014e2d1862ff4647";
- sha256 = "0ml075741iw9n4apiy9iv30wx4bgzpn6iisrzx3mxjl85kgmlmf2";
+ rev = "5ce7c249207b617c72febb27dbad7076342c1afd";
+ sha256 = "04yl9zqv6jrqfms0vxlh3zpsv1dxmx1qh0a2krzs3mrdplq4dzjm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1305d88eca984a66039444da1ea64f29f1950206/recipes/toc-org";
@@ -99984,6 +102061,35 @@
license = lib.licenses.free;
};
}) {};
+ todoist = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , org
+ , transient }:
+ melpaBuild {
+ pname = "todoist";
+ ename = "todoist";
+ version = "20190604.728";
+ src = fetchFromGitHub {
+ owner = "abrochard";
+ repo = "emacs-todoist";
+ rev = "5f3fe44f32466c89db09625965c0c5706b42a534";
+ sha256 = "0qfv6zlw4rk6fri48s1yqg1x6x5q7rk82a28ssclbvx8q9am15wh";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9a75eb89bfeb0b7362bf6d2ffaf6b4750984b3a/recipes/todoist";
+ sha256 = "0fspvqr0m36mxbrnkql1gl8hwlv8qxd48f632zqzylj0vsygaxhf";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs org transient ];
+ meta = {
+ homepage = "https://melpa.org/#/todoist";
+ license = lib.licenses.free;
+ };
+ }) {};
todotxt = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -100569,12 +102675,12 @@
melpaBuild {
pname = "tramp-term";
ename = "tramp-term";
- version = "20180223.727";
+ version = "20190509.1219";
src = fetchFromGitHub {
owner = "randymorris";
repo = "tramp-term.el";
- rev = "7c29f888de0385a676dbf9a4e17bac0111f5c10a";
- sha256 = "1ch9y632kggl3q6yx3g685j3dfbhy7yiwqh8cbxs3wja3rvml8xa";
+ rev = "27b370f3a43638d6845b3b3a93c3d7a806bd3b66";
+ sha256 = "1jsr7j6wc0qzbcb0d7ljvf1qyvsjcpfb9wnhhz587ygcd4yvfqfv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5c84660c641f0bdf3cca8ad2a0f8f6e5d18b59c3/recipes/tramp-term";
@@ -100622,12 +102728,12 @@
melpaBuild {
pname = "transient";
ename = "transient";
- version = "20190319.1228";
+ version = "20190528.104";
src = fetchFromGitHub {
owner = "magit";
repo = "transient";
- rev = "9e30038d2d69e4ad0f3333777137af52e4771442";
- sha256 = "0mp4sfnaznqy5klslgnma5aj7k07r1qka2qnr48qi4shgq3s23jy";
+ rev = "8bfa489644ba5c287f1775b317a5755a3f232e48";
+ sha256 = "08iyw5sww0c3glwykc9030nxda23d5agi8m91rxyn7740vviyv77";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7bfefdf4423d63706a6dcf128886ca6b514e6b/recipes/transient";
@@ -100787,12 +102893,12 @@
melpaBuild {
pname = "treemacs";
ename = "treemacs";
- version = "20190405.748";
+ version = "20190601.1554";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "treemacs";
- rev = "32a241d0aaa5c713815a1a040eea52a5c2b01589";
- sha256 = "0s6znv09y1ngca5hxw85niqhp5ddg9f0w88qjkp2ryva1q1wc0c3";
+ rev = "c639085595485ce749d150f65589d26d38b3aab9";
+ sha256 = "10vddvb9n35w0v4q79y5bn0fr33380w75r90484kirvs5ilq896h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs";
@@ -100814,12 +102920,12 @@
melpaBuild {
pname = "treemacs-evil";
ename = "treemacs-evil";
- version = "20190214.1221";
+ version = "20190416.2225";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "treemacs";
- rev = "de1ba5217ca4c41fc36d405832b749b6fffd2b82";
- sha256 = "0wk280qs99py3s3lykm3pd3v3nbml1c9hkal29cx0475m12fc5lw";
+ rev = "39364c8f3392ffe93035169f68128f8eeaaaa2e7";
+ sha256 = "0y69n7c55d5bf0j1qicxw6pjjzbn4rff773ldlr5hwfi485wc13y";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-evil";
@@ -100871,12 +102977,12 @@
melpaBuild {
pname = "treemacs-magit";
ename = "treemacs-magit";
- version = "20190327.2335";
+ version = "20190501.2241";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "treemacs";
- rev = "4e5f182eb11c5e4ee752de4972a92adab1320d29";
- sha256 = "189gvc5v0ggy4xm81f0467al20qzbfb0gw2vg4l7y07bf3fzzvq8";
+ rev = "3f98c6af32b355f2cf62e8ef174a2c29f3de76ff";
+ sha256 = "09z1mrvnwj6inmg4k8m6y4cw09yak0zz2l9yybp2w3r3jvrnn56v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1719c6bfc346e63f58221ea2c6e625b98f4ea368/recipes/treemacs-magit";
@@ -100898,12 +103004,12 @@
melpaBuild {
pname = "treemacs-projectile";
ename = "treemacs-projectile";
- version = "20190402.2237";
+ version = "20190416.830";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "treemacs";
- rev = "2392ac22caa196ed6850f0accf9d7cd24b11375d";
- sha256 = "0d1k9nmvycbw46b4fjsj15srnmdahfklrh3c6r6sr95ngwl17dic";
+ rev = "7ba9dcaaf850640e805f29d0d64aa254ec544c04";
+ sha256 = "1l4llp9znrxyvcy60bcx1kr1zzxl9jw0w7pdi6n1v6idbs4rvjrs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-projectile";
@@ -100953,12 +103059,12 @@
melpaBuild {
pname = "trident-mode";
ename = "trident-mode";
- version = "20190329.433";
+ version = "20190410.1336";
src = fetchFromGitHub {
owner = "johnmastro";
repo = "trident-mode.el";
- rev = "a128f766e1138e6e04146312b7c8ebbad0dae131";
- sha256 = "141gvvwzql7pnv0d161cj2hpvpkav27lp1gdk1ilf45b3fqqqa87";
+ rev = "109a1bc10bd0c4b47679a6ca5c4cd27c7c8d4ccb";
+ sha256 = "0blbxjaddzhkvzlys46yrzszywmyjkmfhwks52v4laya76rgxm45";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/trident-mode";
@@ -101186,12 +103292,12 @@
melpaBuild {
pname = "tuareg";
ename = "tuareg";
- version = "20190407.807";
+ version = "20190604.718";
src = fetchFromGitHub {
owner = "ocaml";
repo = "tuareg";
- rev = "9157f25980dede0599c6f9a42cc492081752f515";
- sha256 = "0lvjh3a1sl1y29hsfh8dm7hjf25q0mmagdiv8bm07a680wgfii9x";
+ rev = "b6271c4496a29b74ad1e47d6802b9cfba415fe77";
+ sha256 = "02a1bgaakh89s40adc363jmgrs5dkswmgqlwjkq0blyj01rih2yi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg";
@@ -101883,12 +103989,12 @@
melpaBuild {
pname = "undo-propose";
ename = "undo-propose";
- version = "20190322.917";
+ version = "20190408.2336";
src = fetchFromGitHub {
owner = "jackkamm";
repo = "undo-propose-el";
- rev = "036e66c1ac4b0358b34727d2c9b65853347dad89";
- sha256 = "1ah2x0fwf2ybz3i4cjs19fmx7aq1xfgnh4x623qy12v7ab4pvd3m";
+ rev = "5f1fa99a04369a959aad01b476fe4f34229f28cd";
+ sha256 = "1p9h1fqmva07mcs46rqrg9vqn537b615as84s9b7xh76k1r8h1c0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/308eec15ebfd301b34f0d9f019250c9089c4d6e2/recipes/undo-propose";
@@ -102581,12 +104687,12 @@
melpaBuild {
pname = "use-package";
ename = "use-package";
- version = "20190405.1347";
+ version = "20190529.1340";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "0ee88b5cac41acf974c4bedb8859931ead8bfc79";
- sha256 = "0gv976iajc0qf9pbqyljc9mdnyirf353d3w6h38khwqmqv11p6br";
+ rev = "4aa14a4fcd5ca52b3f1bfcf5ab294173f7bbe390";
+ sha256 = "0ilizp2kdv9j792fsmndjfq33fx2c19rr2g4pgaajp1cad2pp2jw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/51a19a251c879a566d4ae451d94fcb35e38a478b/recipes/use-package";
@@ -102717,16 +104823,16 @@
melpaBuild {
pname = "use-ttf";
ename = "use-ttf";
- version = "20181206.902";
+ version = "20190516.2202";
src = fetchFromGitHub {
- owner = "jcs090218";
+ owner = "elpa-host";
repo = "use-ttf";
- rev = "569b5df758bb85b69a98b3bed108b0735179eed9";
- sha256 = "0ama7qqi32vp5mgsdbz6vixp6h5jhkq1m82jqrrgddcd5ih8zan1";
+ rev = "3ee594ac25f01c9c2a92e5e3f64ee078f745b861";
+ sha256 = "11zvb1vwmljk46dypsd5332z4qrl15crhjlynddmi2n7kgw4d5f5";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8af853b2db58300ba1685e3547a9f96c05b04df6/recipes/use-ttf";
- sha256 = "08bylry03q1vy1dx8vcdc4drrn4c97hr45nsz5xc0369jmfvqavs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/use-ttf";
+ sha256 = "0gxrn05qcnf54c5895nw68088b9mngsf7sij2prwyfw0ghdl9s8k";
name = "recipe";
};
packageRequires = [ emacs s ];
@@ -103104,12 +105210,12 @@
melpaBuild {
pname = "vc-hgcmd";
ename = "vc-hgcmd";
- version = "20190404.1202";
+ version = "20190506.338";
src = fetchFromGitHub {
owner = "muffinmad";
repo = "emacs-vc-hgcmd";
- rev = "6379ef242cc2ac8366a6e6f1c588245577c76a3a";
- sha256 = "1zvggg9kpl6d2wrsjlrnjmb0dhmwmd9x6q2yj3g08bv6gsz3nfil";
+ rev = "e0f6e412c66bb8d57549d0d83dcdcab5b71db664";
+ sha256 = "0mcdyy3qcci0x78q06kilfxm14nzmwfzwg7n3njh93i2h1plr7ic";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/111142342ab81dcaa88a831ba620be499a334c3f/recipes/vc-hgcmd";
@@ -103266,12 +105372,12 @@
melpaBuild {
pname = "vdirel";
ename = "vdirel";
- version = "20181001.435";
+ version = "20190429.2324";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "vdirel";
- rev = "dfe5f9478405b8292f85fc911db92e81b627626a";
- sha256 = "1m1k5sfmvi3hw8l4qd4sfhi9h8wk9jd4psb62m4bjf5gbk5ld1pw";
+ rev = "255496e6808e7a3da1b0afef873dc4920c2b117f";
+ sha256 = "0zq2lqj4s3n4japfmjm56yg120l1lk7d0h1jysdp8d4mzdb2m0p0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/72b5ea3f4444c3de73d986a28e1d12bf47c40246/recipes/vdirel";
@@ -103867,12 +105973,12 @@
melpaBuild {
pname = "visual-fill-column";
ename = "visual-fill-column";
- version = "20190405.1454";
+ version = "20190422.1454";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "visual-fill-column";
- rev = "a84e36e483ac14eddf1a905e9025534a06bbc0d1";
- sha256 = "1l7j6h9x57gr46i88h830fg4qs2yqi5r08z6vdxnx4m5gdv0ll0s";
+ rev = "772d4b25ba19f57409cd03524be0f5bfdc2e8da1";
+ sha256 = "1k4a7nqc2zxwxrcrryap2jk6bwc6ln3j6yzgkg5yyf2imsbil4br";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column";
@@ -103893,12 +105999,12 @@
melpaBuild {
pname = "visual-regexp";
ename = "visual-regexp";
- version = "20170228.1716";
+ version = "20190414.114";
src = fetchFromGitHub {
owner = "benma";
repo = "visual-regexp.el";
- rev = "b3096c2d391ff4e28a2a4e8cd82efbf11071ea85";
- sha256 = "12zpmzwyp85dzsjpxd3279kpfi9yz3jwc1k9fnb3xv3pjiil5svg";
+ rev = "3e3ed81a3cbadef1f1f4cb16f9112a58641d70ca";
+ sha256 = "12p3rlhdphwmx1kxsjzcl2wj3i6qgpvw8iwhg1whs6yqgaxivixd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/visual-regexp";
@@ -104090,6 +106196,32 @@
license = lib.licenses.free;
};
}) {};
+ vterm = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "vterm";
+ ename = "vterm";
+ version = "20190502.1000";
+ src = fetchFromGitHub {
+ owner = "akermu";
+ repo = "emacs-libvterm";
+ rev = "db9679d77dda82299f7c3aab79a3f5b0967ddce3";
+ sha256 = "1rb4raq9hx86pv4pkkf5vx62x9bip1hjdx3iiwxviz6kkzfcy236";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91a71615c0a32565e455ac81d9bc90443aa8caf9/recipes/vterm";
+ sha256 = "0nn15pz2ys4bmpyks190x22f8s2fcr793f95h0c2m67cfjmnd478";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/vterm";
+ license = lib.licenses.free;
+ };
+ }) {};
vue-html-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -104126,12 +106258,12 @@
melpaBuild {
pname = "vue-mode";
ename = "vue-mode";
- version = "20190212.1412";
+ version = "20190414.1931";
src = fetchFromGitHub {
owner = "AdamNiederer";
repo = "vue-mode";
- rev = "a2e60b0fd245f8f502025dd32399a9f10b82dcb3";
- sha256 = "1ybz7djmcp2mpga04g7jlsfkjirajg8w5z6jx0dsyqk69rd21gln";
+ rev = "031edd1f97db6e7d8d6c295c0e6d58dd128b9e71";
+ sha256 = "047l5nxw86dvls8an65mmqcy673n37pyli7s0d52yi07jk0lw1yx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/vue-mode";
@@ -104202,12 +106334,12 @@
melpaBuild {
pname = "w3m";
ename = "w3m";
- version = "20190404.1609";
+ version = "20190527.2050";
src = fetchFromGitHub {
owner = "emacs-w3m";
repo = "emacs-w3m";
- rev = "0b85cb2dd4deb348edff25b40e17332af49ad981";
- sha256 = "0sjc6giwzvkndyh6r6v2jiggdqln6y8v39809dn9lj0gj9wz3p4d";
+ rev = "bbece278b90269260399458c4357ed2542c68211";
+ sha256 = "1wy6fbzkgww23bqhjhc5wlkzqjg8j68wc5v35qr0db3m1r81gnmj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/85c53c48caab0845101c487e4fee7e2cda15f706/recipes/w3m";
@@ -104385,12 +106517,12 @@
melpaBuild {
pname = "wand";
ename = "wand";
- version = "20180815.331";
+ version = "20190514.356";
src = fetchFromGitHub {
owner = "cmpitg";
repo = "wand";
- rev = "5c0d4833a3afc57e4b2398250139729cc9131d16";
- sha256 = "1d7zv5mk9mqlp40hzbf62y080a2aqvjw4x7y9frh33217r8h5b6i";
+ rev = "39ae16ad4f031c25c56b4bb82130d3815c0000f8";
+ sha256 = "1sg7xyzaw55rl85hkjn5p06cfhz6r4zlw17nrppwbfs2yvq71b6h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/38be840bbb32094b753ec169b717a70817006655/recipes/wand";
@@ -104745,12 +106877,12 @@
melpaBuild {
pname = "web-mode";
ename = "web-mode";
- version = "20190301.900";
+ version = "20190521.2310";
src = fetchFromGitHub {
owner = "fxbois";
repo = "web-mode";
- rev = "c8a3b33e088d2a910c000804966b804bba33f982";
- sha256 = "04py5kqzhmgw2g9rqjlx9cffz71xbcdn1sjiglibmawqgy83chk3";
+ rev = "a67d387f41d45a1bfad694fa06a4fcd504e6e357";
+ sha256 = "1drdp51dz1jin7ycsr4nlx2nxy7h3wk67pia4ydaxsk45k3k6zpm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode";
@@ -104772,12 +106904,12 @@
melpaBuild {
pname = "web-mode-edit-element";
ename = "web-mode-edit-element";
- version = "20181214.509";
+ version = "20190531.152";
src = fetchFromGitHub {
owner = "jtkDvlp";
repo = "web-mode-edit-element";
- rev = "30f0f697212a85a9b881549fc272fa7c96d3e703";
- sha256 = "1qnk4skzj6b47h8c2yg05hc7iv8y4102izlfc490307y264rv051";
+ rev = "ad5d7e4dc2420bdd00ce65d9adffbd38a5904afa";
+ sha256 = "143xh6xc7qd88hjjmcs9fd2zlgxl0hhgx5fplhbi9zxd2ihhz0dg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/web-mode-edit-element";
@@ -104957,12 +107089,12 @@
melpaBuild {
pname = "websocket";
ename = "websocket";
- version = "20190405.2119";
+ version = "20190407.1852";
src = fetchFromGitHub {
owner = "ahyatt";
repo = "emacs-websocket";
- rev = "d34f5f095dced553eb3f30924a22a88e6763f4b4";
- sha256 = "08qi79a0lb2d3hqbv3hanwwhhqv29z5h97v4417apnd045jl855k";
+ rev = "a5a3ddb5cad82f4259c07b7a49c95cdfe5fe6daa";
+ sha256 = "1zlazr9imm9zlf48mgrag1yaa1s224v42rc1624zvdy58n7la1sx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/websocket";
@@ -105011,12 +107143,12 @@
melpaBuild {
pname = "weechat";
ename = "weechat";
- version = "20180513.310";
+ version = "20190520.851";
src = fetchFromGitHub {
owner = "the-kenny";
repo = "weechat.el";
- rev = "bcf714e32b012c6a89d5c0a82ab3a74d454908ff";
- sha256 = "1gm2yhz3qy55qqwf0ccrqw4nifxaig4jpdqmcl0ydx1n3myxx64l";
+ rev = "d9a13306ea8be27367f92e9202d116a88fa1f441";
+ sha256 = "1z9lav09jsmhshlk0xnbp21y9apzhd9zv08h88sdg942v0fn2fid";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e38255a31a4ca31541c97a506a55f82e2670abe6/recipes/weechat";
@@ -105245,12 +107377,12 @@
melpaBuild {
pname = "which-key";
ename = "which-key";
- version = "20190315.548";
+ version = "20190528.1814";
src = fetchFromGitHub {
owner = "justbur";
repo = "emacs-which-key";
- rev = "187ac0eb8990b62d4bfd83aac10a0ae68cdd2ff5";
- sha256 = "0zl2vksl5jk3l23z4v7m05xha6l953c84zw1ffalcqxrrcs0737r";
+ rev = "ba03e7e5bcbe3f7d95be2cfddd71454151bb98c8";
+ sha256 = "1rwnvkwa7cvp7rbsik8xlv6f01s8x7f3bcrxfbi9q3ylr1c145fl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key";
@@ -105263,6 +107395,34 @@
license = lib.licenses.free;
};
}) {};
+ which-key-posframe = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , posframe
+ , which-key }:
+ melpaBuild {
+ pname = "which-key-posframe";
+ ename = "which-key-posframe";
+ version = "20190427.403";
+ src = fetchFromGitHub {
+ owner = "yanghaoxie";
+ repo = "which-key-posframe";
+ rev = "e7f28608c7fc9507e407c6b840dff09062df533a";
+ sha256 = "0954llm57gfy3lvq8s32mqdswbv20na0v28gi61kw7023f1wg7ri";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56ab10dc99ea4f5b207f9874124aff414d859a17/recipes/which-key-posframe";
+ sha256 = "1vpdni3ascz2zw6k1xrnw2vqnq8p30mc7d8v81qdbjb58q27l8ll";
+ name = "recipe";
+ };
+ packageRequires = [ emacs posframe which-key ];
+ meta = {
+ homepage = "https://melpa.org/#/which-key-posframe";
+ license = lib.licenses.free;
+ };
+ }) {};
whitaker = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -105374,12 +107534,12 @@
melpaBuild {
pname = "whizzml-mode";
ename = "whizzml-mode";
- version = "20180711.910";
+ version = "20190512.1856";
src = fetchFromGitHub {
owner = "whizzml";
repo = "whizzml-mode";
- rev = "f457052dc5426d542ca69185a5a87905f08f1310";
- sha256 = "15nlnch97rgpcsxv5prw4ikzl5gbnzycqmq4h1x8n16ianbgh249";
+ rev = "cb476ed0d6be52e0b8c38f5b643cbbfceda1b4ca";
+ sha256 = "1iklmzqb7200xniygd3gj3pa8d18z3pnabslsvd0k4qqvyvwnlxw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/11f26b15c326c3b8541bac510579b32493916042/recipes/whizzml-mode";
@@ -105392,6 +107552,32 @@
license = lib.licenses.free;
};
}) {};
+ whois = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "whois";
+ ename = "whois";
+ version = "20190529.854";
+ src = fetchFromGitHub {
+ owner = "lassik";
+ repo = "emacs-whois";
+ rev = "b4cdab4d25225c6e834727a7d85cdb0d493da152";
+ sha256 = "058wym1iwgz5n5yd508xdc05ncdyqbs53a5c9mq0s6gs06h5xfyw";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/719895d3db6daae5df00d4823a62fcc0f7bf2d9d/recipes/whois";
+ sha256 = "061jbk97ma21id0vpkvxdslfvs2x0wqw8c32mwhdcqjqjc74k9km";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/whois";
+ license = lib.licenses.free;
+ };
+ }) {};
whole-line-or-region = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105399,12 +107585,12 @@
melpaBuild {
pname = "whole-line-or-region";
ename = "whole-line-or-region";
- version = "20181211.1556";
+ version = "20190410.1915";
src = fetchFromGitHub {
owner = "purcell";
repo = "whole-line-or-region";
- rev = "d816cf566f02a37ab46b44675e9f538a63a47d05";
- sha256 = "1b8n02dv5fyspsgi7daz6i790hp6s0lkiyj7gz8q34sf2924knvf";
+ rev = "15f17488f98868f1628a3f9d91a812b1f89bc73a";
+ sha256 = "18qzmpw41bqw2ymynya3hgn9skj13r5s6d2b14r78hvmv4bc9h9r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/whole-line-or-region";
@@ -105995,12 +108181,12 @@
melpaBuild {
pname = "with-editor";
ename = "with-editor";
- version = "20190224.131";
+ version = "20190511.457";
src = fetchFromGitHub {
owner = "magit";
repo = "with-editor";
- rev = "38df9bfc2227bcb7ac4899c83a03756d5f171450";
- sha256 = "00jz4a3004w10l6ip7wcb4zbvlsi8wbgnjpgr5p030y21q6gk5ki";
+ rev = "66bec91c859f305445b766394eb25248c1172426";
+ sha256 = "1z2h9casyw1b93ikq2mf9xixyvbl90zddf0s66lqfiyj2y376pq3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor";
@@ -106077,12 +108263,12 @@
melpaBuild {
pname = "with-venv";
ename = "with-venv";
- version = "20190123.1834";
+ version = "20190515.2306";
src = fetchFromGitHub {
owner = "10sr";
repo = "with-venv-el";
- rev = "4dd29606e2f29de1488c0678736b3ea92876f09e";
- sha256 = "1i3dsvkvcmf5zmfwy988bz9wp7jbcpdrijdzcfqyy5spkqgv031c";
+ rev = "283b35e33f012657ef23e154b6bdf362377d82e6";
+ sha256 = "1s0vnsvhlcx1z5sbiyhk4iizakx4cbvjxwygdamrl8s0bnigqhfd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/555a2e49f18fbae59913459466babf8d55bd2151/recipes/with-venv";
@@ -106290,12 +108476,12 @@
melpaBuild {
pname = "worf";
ename = "worf";
- version = "20190404.323";
+ version = "20190519.948";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "worf";
- rev = "57c4c1a02532fdc8c2393cec69d89ef423ed529e";
- sha256 = "1nn2hkj0lnk81ga4976h2dbgfarnidrvcf9zfcz6gxxrsp7knh8c";
+ rev = "00d191b347397bd7ad1f5b95cfe39fa3fce9fc91";
+ sha256 = "0mp5f6hp8pqckfsi4bxcg09kcfndvsbc2nnqbgdw87bidwlzhzmy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf";
@@ -107331,12 +109517,12 @@
melpaBuild {
pname = "xquery-tool";
ename = "xquery-tool";
- version = "20170605.126";
+ version = "20190523.419";
src = fetchFromGitHub {
owner = "paddymcall";
repo = "xquery-tool.el";
- rev = "171abb0c4560c1a50e1a7def07eb61052ed30609";
- sha256 = "1h3zqq4izzwlg22lj0813bid4j4r5m0blcx33rfak1ngw34zrcza";
+ rev = "dc939a6d779e83fa06c4486e53dbeb3846c38c02";
+ sha256 = "10rp8wbvbab2z3rcyfsb2jxyj3fphq9g25wmai8c610z4s8rldlq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2/recipes/xquery-tool";
@@ -107409,12 +109595,12 @@
melpaBuild {
pname = "xterm-color";
ename = "xterm-color";
- version = "20190407.1110";
+ version = "20190602.501";
src = fetchFromGitHub {
owner = "atomontage";
repo = "xterm-color";
- rev = "749307da49323883c15d8789a958fa74607228cc";
- sha256 = "0hh18vxkr71p4ipzly4w6jx4qy4c1zrfzz2q38vshh1x78lcm77l";
+ rev = "ff64312ad412c8b3e87a059139f288205d221e15";
+ sha256 = "1hl2n0mlnskz0f43dz41h11dkyw1pn3x9sq61w0qzjkkbbyz5cqk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b34a42f1bf5641871da8ce2b688325023262b643/recipes/xterm-color";
@@ -107771,12 +109957,12 @@
melpaBuild {
pname = "yang-mode";
ename = "yang-mode";
- version = "20180306.407";
+ version = "20190507.24";
src = fetchFromGitHub {
owner = "mbj4668";
repo = "yang-mode";
- rev = "340aec635e359609b22f7e94df15af1af2b070f6";
- sha256 = "0795z6s71vlb709n5lpx2f9adfjndafg1h5860zvy1qc4m1054rz";
+ rev = "4b4ab4d4a79d37d6c31c6ea7cccbc425e0b1eded";
+ sha256 = "0sqp8vwlymwl2dp6bh1gf8725j1fd9sqj4qfgva09rmkq8fdivfm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb42ab9b5f118baaf6766c478046552b686981a1/recipes/yang-mode";
@@ -107797,12 +109983,12 @@
melpaBuild {
pname = "yankpad";
ename = "yankpad";
- version = "20190319.716";
+ version = "20190604.1327";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "yankpad";
- rev = "91effa1b160cc984c99f126152690da9cba95e30";
- sha256 = "03dqicig1axdadmj8xdzcwnnvvf3k8j0y5wjwjp6rszhzlk0ag60";
+ rev = "ae60dcdf44ef42e77db1d9ba0e0c68d063d85294";
+ sha256 = "1fpy7d47x2liysa74adk9yn7jxhyqqjfkc1mxj0prdaa6skcarza";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e64746d10f9e0158621a7c4dc41dc2eca6ad573c/recipes/yankpad";
@@ -107848,12 +110034,12 @@
melpaBuild {
pname = "yara-mode";
ename = "yara-mode";
- version = "20170719.2351";
+ version = "20190423.10";
src = fetchFromGitHub {
owner = "binjo";
repo = "yara-mode";
- rev = "af5c05b34a29fc1bd73a6d21c82cc76320b33e5c";
- sha256 = "1v8z3cwwla42d3r317091g5i7bj1hlbr9sd1p9s9b7y134gpd1xp";
+ rev = "cd8093b1bc4fc260462f5284b157008fefa84880";
+ sha256 = "04pl0kbx5g8wz00x7bhpi9w29wmxdmy5dhdq3j4rk3nys5njxr8v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef22d2dad1bae62721710bbff4b7228204d7c425/recipes/yara-mode";
@@ -107976,12 +110162,12 @@
melpaBuild {
pname = "yasnippet";
ename = "yasnippet";
- version = "20181015.512";
+ version = "20190502.1514";
src = fetchFromGitHub {
owner = "joaotavora";
repo = "yasnippet";
- rev = "1d96da2e08664c31ff7f6f7441da1f4fa5680b1f";
- sha256 = "01sjmc62rvyjysp031pwiqizk6b8i1jdxnq4v24ikx7d2f3bmpjy";
+ rev = "f056a4def80fa07132d9dd929ddedfb9d0fabd28";
+ sha256 = "1n9gdp4a06g9rzckp4m6lwjbqsi45ha5zlb7zcvzk3wkf43fd1p9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet";
@@ -108002,12 +110188,12 @@
melpaBuild {
pname = "yasnippet-snippets";
ename = "yasnippet-snippets";
- version = "20190316.319";
+ version = "20190513.349";
src = fetchFromGitHub {
owner = "AndreaCrotti";
repo = "yasnippet-snippets";
- rev = "e378404d01ad031bdc88b9bcb01d5c877c26eca6";
- sha256 = "1g82j3a7y5f9viy24alg6ihd1535l2m6pdj4bg53j9nh19xi9jb7";
+ rev = "15e4b08f7484c049d6b043263c5e09bc73846e32";
+ sha256 = "1sva5n77bydliq1jxa3914n8gw07v3ghp9lkh1rr2q6plawrcivs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/42490bbdac871bce302fbc9a0488ff7de354627e/recipes/yasnippet-snippets";
@@ -108029,12 +110215,12 @@
melpaBuild {
pname = "yatemplate";
ename = "yatemplate";
- version = "20180617.252";
+ version = "20180617.232";
src = fetchFromGitHub {
owner = "mineo";
repo = "yatemplate";
- rev = "4f4fca9f04f7088c98aa195cf33635a35a6055cb";
- sha256 = "04nd9fcp0ff2sjhwrq4nqjicc50m7498vq1qzw2cn5c5gaqmzff8";
+ rev = "1d83419746669dbc436b1c6a164c3d29bd8ff4de";
+ sha256 = "1ipjawx0sadw1vijswm7wzwjnkds1pas925mbacvc3kcxg5jwjvx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8ba3cdb74f121cbf36b6d9d5a434c363905ce526/recipes/yatemplate";
@@ -108054,11 +110240,11 @@
melpaBuild {
pname = "yatex";
ename = "yatex";
- version = "20190406.910";
+ version = "20190524.2248";
src = fetchhg {
url = "https://www.yatex.org/hgrepos/yatex";
- rev = "2ed79846fd53";
- sha256 = "0yx4679h2g7c8di7vbg9a2341fr988badibn1i38b1qjcrinfm1b";
+ rev = "714f3527b4a1";
+ sha256 = "12sqy2wrlgzi71vn3q5h47z1i6l6di3pnr4pmn0ixdp500gvy2fv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9854c39fc1889891fe460d0d5ac9224de3f6c635/recipes/yatex";
@@ -108137,12 +110323,12 @@
melpaBuild {
pname = "ycmd";
ename = "ycmd";
- version = "20180724.556";
+ version = "20190416.107";
src = fetchFromGitHub {
owner = "abingham";
repo = "emacs-ycmd";
- rev = "fe35b7f2e3d9370941b9e537c9bc578d814acce2";
- sha256 = "10h3whhz4bli4r6d945qdwv0627842l84vp6binqzw7lddd72y6g";
+ rev = "6f4f7384b82203cccf208e3ec09252eb079439f9";
+ sha256 = "1bl86x8nqw4jqzb8pfm6hm316hmk1bx8v3qz7wq9z92hb67ck2kn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd";
@@ -108252,12 +110438,12 @@
melpaBuild {
pname = "yoficator";
ename = "yoficator";
- version = "20181220.555";
+ version = "20190509.920";
src = fetchFromGitLab {
owner = "link2xt";
repo = "yoficator";
- rev = "95840df90063ba16a5f43c84de0746af6dfc01fc";
- sha256 = "1k9fxvc4jwbxddakig5lnk5xy79g3f6wn5151wdfk9ynq0m2fyrf";
+ rev = "fa914f9648515bca54b5e558ca57d2b65fa57491";
+ sha256 = "0mgkwjprcj47zn8kd3ppqnbnmnn00cvnbs0r0h5951966vshh13f";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5156f01564978718dd99ab3a54f19b6512de5c3c/recipes/yoficator";
@@ -108277,12 +110463,12 @@
melpaBuild {
pname = "yoshi-theme";
ename = "yoshi-theme";
- version = "20170330.0";
+ version = "20190505.28";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "yoshi-theme";
- rev = "eab4fb67e8fec47c25c4c1393ac1211f043dbd44";
- sha256 = "01al6pzl9mz04b43a3lwnhdvr5i71qhafz6frl5m9q2k6x1x2n2f";
+ rev = "70365870ff823b954aa85972217d8f116c45d939";
+ sha256 = "1myrvw0brl6cn3gljbplgxj3mr3mzicfymg7sir8hrk4d5g498yn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme";
@@ -108436,12 +110622,12 @@
melpaBuild {
pname = "zenburn-theme";
ename = "zenburn-theme";
- version = "20190317.1146";
+ version = "20190510.234";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "zenburn-emacs";
- rev = "0f14f780420602da823271fb2eb6251ff4daab9e";
- sha256 = "0anv22dhqpsgvag8vbvgdfbs50054715rhfj9z4qkysxwzzysmjr";
+ rev = "b6090a1a343d5173e38e2966f7cf44d96cba037c";
+ sha256 = "1arplxd7f5li0dkd8zydh8ac84yk1crwjmq6hd38nsqgc53iimcl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/zenburn-theme";
@@ -108566,12 +110752,12 @@
melpaBuild {
pname = "zerodark-theme";
ename = "zerodark-theme";
- version = "20181218.49";
+ version = "20190528.223";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "zerodark-theme";
- rev = "a697570aeb5b8c008961e0869f5e05740f43113d";
- sha256 = "02i2vra853wb8nng37ybii70b3z6p10j5s3jnv9j2dlcnajbfvbr";
+ rev = "df22536a244293591575e56970bf83814faa7c14";
+ sha256 = "0pfyd1iqs7l2ngwgvj9n0r9k1px7yl16h8n502xdyf0pprxcs4p6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/zerodark-theme";
@@ -108644,12 +110830,12 @@
melpaBuild {
pname = "zmq";
ename = "zmq";
- version = "20190326.852";
+ version = "20190516.1443";
src = fetchFromGitHub {
owner = "dzop";
repo = "emacs-zmq";
- rev = "3965bec1ac232f0f7f35e7e91626e192688407b4";
- sha256 = "02lcgq53gsg3li6fhga4njxfs5vb6xdh07r8z4cq9rmwfm0wilfq";
+ rev = "e4a657b237c42151f088de95e572a238361e7fc5";
+ sha256 = "0j9sd1vcbmrpxykzkp7ifrb0v889ahlg0f6r8813lq4881yxf63j";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/72f4dcc2723de826bf1af7235ac6d9119a243c63/recipes/zmq";
@@ -108854,12 +111040,12 @@
melpaBuild {
pname = "zoom";
ename = "zoom";
- version = "20180310.421";
+ version = "20190523.600";
src = fetchFromGitHub {
owner = "cyrus-and";
repo = "zoom";
- rev = "c97ffaf6d0032007f13974b4d542558f9d686e39";
- sha256 = "0jfz9z6g1zf2jmw5sinnnwnd6z0q8qrgj337f8d2g7mchy85l6fv";
+ rev = "578295532fb1c4ad2a2e95894e65cce02f812b54";
+ sha256 = "1qcni15mps7w9waail21x0fy2rrd5y8cm4yzi8rs2ar4vqrjbyyp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe094c99756ad29eda9bc51f31bb70c4ddc4131/recipes/zoom";
@@ -109009,12 +111195,12 @@
melpaBuild {
pname = "zoutline";
ename = "zoutline";
- version = "20190211.851";
+ version = "20190520.1119";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "zoutline";
- rev = "2232139b64f9adabe81f48dd8d2f059e3f19edda";
- sha256 = "1hq8m8n1zq63k04z9h1wmp69r8mv6vb9fzxgslwl683kid6srqwi";
+ rev = "63756846f8540b6faf89d885438186e4fe1c7d8a";
+ sha256 = "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4a26341f491145938aee9b531cd861200bfa2f6d/recipes/zoutline";
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index 6f15d33f78b..8f440819afe 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -266,6 +266,7 @@ self:
removeAttrs (super // overrides)
[
"show-marks" # missing dependency: fm
+ "lenlen-theme" # missing dependency: color-theme-solarized
];
in
melpaPackages // { inherit melpaPackages; }
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
index e1f83e9cefa..3b4479c099e 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
@@ -103,6 +103,59 @@
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
@@ -186,6 +239,32 @@
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
@@ -325,6 +404,33 @@
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
@@ -487,6 +593,32 @@
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
@@ -593,6 +725,60 @@
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
@@ -657,12 +843,12 @@
melpaBuild {
pname = "ac-php";
ename = "ac-php";
- version = "2.0.7";
+ version = "2.1.1";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "f489da3ceb04ff6efd9da5c5f56d71f49966e1d4";
- sha256 = "081v4srqzzwd8v07z013m756qrxll5fpzwf8km0686nc5gcg6q9l";
+ rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b";
+ sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php";
@@ -676,7 +862,6 @@
};
}) {};
ac-php-core = callPackage ({ dash
- , emacs
, f
, fetchFromGitHub
, fetchurl
@@ -689,19 +874,19 @@
melpaBuild {
pname = "ac-php-core";
ename = "ac-php-core";
- version = "2.0.7";
+ version = "2.1.1";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "e270e65338d5e57d0df4e167d39cd7c11537f385";
- sha256 = "16ahvzqlbla7qid7xq0s6g1s8pfxxixvjq7vh0v2w5c1rvqc2vb7";
+ rev = "19753d091424dde53a5282a3a72f94a0ddb5fd57";
+ sha256 = "18l8s85yi94v7mcm8g8mm9fqjrm8zfp3yxka54b8nzw2zyjvwzi8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core";
sha256 = "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn";
name = "recipe";
};
- packageRequires = [ dash emacs f php-mode popup s xcscope ];
+ packageRequires = [ dash f php-mode popup s xcscope ];
meta = {
homepage = "https://melpa.org/#/ac-php-core";
license = lib.licenses.free;
@@ -762,6 +947,35 @@
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
@@ -790,6 +1004,63 @@
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
@@ -977,6 +1248,34 @@
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
@@ -1058,6 +1357,57 @@
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
@@ -1264,6 +1614,32 @@
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
@@ -1292,6 +1668,32 @@
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
@@ -1319,6 +1721,56 @@
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
@@ -1371,6 +1823,32 @@
license = lib.licenses.free;
};
}) {};
+ aio = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "aio";
+ ename = "aio";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "skeeto";
+ repo = "emacs-aio";
+ rev = "077722896e649e7a33dcafbc4585686a29423979";
+ sha256 = "1y7j10j74r3fy0rcb8g3cm9nlls34qb0pz9xkia7psp77syrlz54";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95744cc13e7ac8d9acd794004d951f62e5880fa4/recipes/aio";
+ sha256 = "0sd8g2w4n9r2ndmp353v89xvky8043vmd92v2ggbl45chhpjl5zw";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/aio";
+ license = lib.licenses.free;
+ };
+ }) {};
airline-themes = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -1397,6 +1875,34 @@
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
@@ -1424,6 +1930,33 @@
license = lib.licenses.free;
};
}) {};
+ alarm-clock = callPackage ({ emacs
+ , f
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "alarm-clock";
+ ename = "alarm-clock";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "wlemuel";
+ repo = "alarm-clock";
+ rev = "d5706ace823f75136107c09c6dad79df7c3b290e";
+ sha256 = "1jaagkzfdn9z1plw7ky7gabp45gv0a0gap2a55is1i9cyy83kzmw";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/440fe05fa0d10d54e9c52e2e54e71a1321325376/recipes/alarm-clock";
+ sha256 = "1cgrj6dzpx0q15qzr9d342wg8w92c2r4zmk7rif2h87qxr66fbrg";
+ name = "recipe";
+ };
+ packageRequires = [ emacs f ];
+ meta = {
+ homepage = "https://melpa.org/#/alarm-clock";
+ license = lib.licenses.free;
+ };
+ }) {};
alchemist = callPackage ({ company
, dash
, elixir-mode
@@ -1534,6 +2067,84 @@
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
@@ -1561,6 +2172,61 @@
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
@@ -1571,12 +2237,12 @@
melpaBuild {
pname = "all-the-icons-ivy";
ename = "all-the-icons-ivy";
- version = "0.1.2";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "asok";
repo = "all-the-icons-ivy";
- rev = "aa791d6b0055bce3ac68970a8ef6abf0726edf0f";
- sha256 = "0mmimibzn5ncy4rpyq6vkk2m2qlki54nf8yirphabh4m2zf9marg";
+ rev = "b768b83716100701a5cda9c071da2bcac34bd6a4";
+ sha256 = "03fssygwia1gv35y6mzifnkg5cb4klaq240jfqmyfji9jq95jzrd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9496e6bb6f03f35444fb204860bc50e5e1b36214/recipes/all-the-icons-ivy";
@@ -1631,6 +2297,135 @@
license = lib.licenses.free;
};
}) {};
+ ameba = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ameba";
+ ename = "ameba";
+ version = "0.1.0";
+ src = fetchFromGitHub {
+ owner = "veelenga";
+ repo = "ameba.el";
+ rev = "51bb5e2aea2fb9fea83e5fed5e8df479f2d85935";
+ sha256 = "1vrhyi5fc65d3czq3jalpjvm33vrxbars51s1qhv7alixqnrrpv6";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/ameba";
+ sha256 = "0500r0yihd208zc8cvdqgfn58a7mrhfnb0lqy509b4k0i8y0v5mq";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ameba";
+ 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
@@ -1738,6 +2533,31 @@
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
@@ -1790,6 +2610,34 @@
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
@@ -1845,6 +2693,31 @@
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
@@ -1976,6 +2849,31 @@
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
@@ -2001,6 +2899,56 @@
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
@@ -2053,6 +3001,31 @@
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
@@ -2060,12 +3033,12 @@
melpaBuild {
pname = "apache-mode";
ename = "apache-mode";
- version = "2.1";
+ version = "2.2.0";
src = fetchFromGitHub {
owner = "emacs-php";
repo = "apache-mode";
- rev = "0906559e0cb2997405d98ea6b2195954e3935d3b";
- sha256 = "0vfyi34qcwkz9975cq5hin1p2zyy3h05fni4f93xyrcs31zvmk22";
+ rev = "354f9302a8d805ac80d846adcd1cef10830b3d51";
+ sha256 = "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/apache-mode";
@@ -2078,6 +3051,31 @@
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
@@ -2155,6 +3153,31 @@
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
@@ -2162,12 +3185,12 @@
melpaBuild {
pname = "aproject";
ename = "aproject";
- version = "0.3";
+ version = "0.4";
src = fetchFromGitHub {
owner = "vietor";
repo = "aproject";
- rev = "3c7d23c341862dfd77fd0a64775df12ddb44ab54";
- sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc";
+ rev = "702caf5392288dfd821b1e744fef0bb4fd9f9281";
+ sha256 = "18n3gsghj7sxxd6kpp21b2p7qwv93giwyr1zfvgbs8pzsbc8i9rx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/de10c48976352f273e8363c2f6fa60602ee86c9b/recipes/aproject";
@@ -2205,6 +3228,111 @@
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
@@ -2231,6 +3359,111 @@
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
@@ -2308,6 +3541,33 @@
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
@@ -2360,6 +3620,58 @@
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
@@ -2469,6 +3781,58 @@
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
@@ -2530,12 +3894,12 @@
melpaBuild {
pname = "auth-source-pass";
ename = "auth-source-pass";
- version = "4.0.2";
+ version = "5.0.0";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "auth-password-store";
- rev = "5822a35fa8cb74b8fc34600e82dbba1d341ce745";
- sha256 = "0qkyqnfx596s0ycavm4ri0nbzmy2c6g7ifgql798p0pwwjgbsjyy";
+ rev = "df074612114c3cc2fa1c3023f26ff182f9b1190a";
+ sha256 = "0qnqqdpbfr06nqw4hq7c1s7yh7zyrv4gqjj06v70cavjml7pagp6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5e268441634a6e58a00e577d6e2292fa226c11b8/recipes/auth-source-pass";
@@ -2548,6 +3912,58 @@
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
@@ -2602,6 +4018,111 @@
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
@@ -2627,6 +4148,33 @@
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
@@ -2707,6 +4255,32 @@
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
@@ -2759,6 +4333,56 @@
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
@@ -2810,6 +4434,32 @@
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
@@ -2837,6 +4487,109 @@
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
@@ -2864,6 +4617,89 @@
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
@@ -2890,6 +4726,33 @@
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
@@ -2940,6 +4803,31 @@
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
@@ -2966,6 +4854,57 @@
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
@@ -2994,6 +4933,81 @@
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
@@ -3003,12 +5017,12 @@
melpaBuild {
pname = "avy";
ename = "avy";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "avy";
- rev = "369af594e5ea28be1d91b22753aace16baadc046";
- sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm";
+ rev = "f2cf43b5372a6e2a7c101496c47caaf03338de36";
+ sha256 = "09qdni1s74i5pv8741szl5g4ynj8fxn0x65qmwa9rmfkbimnc0fs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy";
@@ -3021,6 +5035,35 @@
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
@@ -3102,6 +5145,85 @@
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
@@ -3127,6 +5249,32 @@
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
@@ -3163,6 +5311,32 @@
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
@@ -3190,6 +5364,107 @@
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
@@ -3242,6 +5517,82 @@
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
@@ -3292,6 +5643,111 @@
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
@@ -3397,6 +5853,60 @@
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
@@ -3448,6 +5958,58 @@
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
@@ -3526,6 +6088,30 @@
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
@@ -3576,6 +6162,31 @@
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
@@ -3627,6 +6238,57 @@
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
@@ -3681,6 +6343,33 @@
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
@@ -3710,6 +6399,113 @@
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
@@ -3916,6 +6712,381 @@
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
@@ -3923,12 +7094,12 @@
melpaBuild {
pname = "bm";
ename = "bm";
- version = "201808";
+ version = "201905";
src = fetchFromGitHub {
owner = "joodland";
repo = "bm";
- rev = "d224b6cd8341db4c2e11263c346dd44fb37fcd88";
- sha256 = "18xwm1xj436bwa2l3dkfx6hlj19y6f0xqd3jbd06j4g3idpryqma";
+ rev = "637dacf4cb9112fdfb949706a704dd53cbe79c7e";
+ sha256 = "180b3rc13asrmsdh7v405d54jkrininvaj52xhp71vw91ng51dkn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/bm";
@@ -3941,6 +7112,36 @@
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
@@ -3950,12 +7151,12 @@
melpaBuild {
pname = "bnf-mode";
ename = "bnf-mode";
- version = "0.3.2";
+ version = "0.4.2";
src = fetchFromGitHub {
owner = "sergeyklay";
repo = "bnf-mode";
- rev = "ac004f60012d648bf8c0e87d841935461279587a";
- sha256 = "0v9lc2kr8x8r59z7vlv89l7slcq3m05k9abd5ds46v4xv15bh2jp";
+ rev = "2f217ecf76fa775da4b28de7dd2b615460d9f8ad";
+ sha256 = "17nhy9mwaji230d3dhi3d40wibqviapa5h60mlm20mc5b2vb0vyd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/217bde4ccd2d68dc14b1bfee22fbc99cd4109952/recipes/bnf-mode";
@@ -4020,6 +7221,32 @@
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
@@ -4045,6 +7272,61 @@
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
@@ -4111,12 +7393,12 @@
melpaBuild {
pname = "borg";
ename = "borg";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "borg";
- rev = "4ffec24967ba805be2b2f1750e7cfffb85e26a1f";
- sha256 = "0hrl6sg6p73d8f7xkpr3z30k4w5f5c52ygcd4db8zrh8lgnvxb9q";
+ rev = "940af3d437b299ef81ce73da4e4ec8c2f52d7a79";
+ sha256 = "0lg2inxzfz6pcblynna4fyi5lxnmbrpl095d6574d0pnn22zdx5a";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/878ab90d444f3a1fd2c9f9068ca7b477e218f1da/recipes/borg";
@@ -4129,6 +7411,58 @@
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
@@ -4155,6 +7489,136 @@
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
@@ -4234,6 +7698,30 @@
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
@@ -4261,6 +7749,167 @@
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
@@ -4339,6 +7988,31 @@
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
@@ -4495,6 +8169,32 @@
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
@@ -4572,6 +8272,82 @@
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
@@ -4676,6 +8452,159 @@
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
@@ -4754,6 +8683,58 @@
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
@@ -4829,6 +8810,31 @@
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
@@ -4934,6 +8940,31 @@
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
@@ -4969,16 +9000,16 @@
melpaBuild {
pname = "caml";
ename = "caml";
- version = "4.7.1";
+ version = "20190121.716";
src = fetchFromGitHub {
owner = "ocaml";
- repo = "ocaml";
- rev = "ca71bda2ac7e5143f58fa9a1693f97e709a91332";
- sha256 = "1ksx2ym5s68m87rnjjkdwhp5ci6cfw0yhmjjmq1r4a0d0r77x4lr";
+ repo = "caml-mode";
+ rev = "cd1142f1e6a9ad8d763688877ce76b2a7436d750";
+ sha256 = "1zzsjibiyl947fir1j0swzsq7pk4l1jh8dn86by24zgcpm14gj3c";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d5a3263cdcc229b11a3e96edbf632d56f32c47aa/recipes/caml";
- sha256 = "1ixs0626nsg1ilqdwj5rd8kicjy7mprswwy0kprppmpmc8y7xf7c";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42667ee0d64bce19ad9081a4fae163a9655641d4/recipes/caml";
+ sha256 = "0hpxvvgq9nxcbxq9dm1sia3ph2h7p07pp48jz77pr786lrw67la0";
name = "recipe";
};
packageRequires = [];
@@ -5016,6 +9047,58 @@
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
@@ -5043,6 +9126,32 @@
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
@@ -5094,8 +9203,8 @@
sha256 = "1p37lq8xpyq0rc7phxgsw3b73h8vf9rkpa5959rb5k46w6ps9686";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/cask";
- sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/606e62bacfc6b6fc1d8bff3e716b743e6f32b29a/recipes/cask";
+ sha256 = "17jv9hhwh3azwa8rc5iljr3c2kz6razq67mvsxi9qnywq4rhrgm9";
name = "recipe";
};
packageRequires = [ cl-lib dash epl f package-build s shut-up ];
@@ -5240,6 +9349,136 @@
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
@@ -5294,6 +9533,31 @@
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
@@ -5323,6 +9587,108 @@
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
@@ -5403,6 +9769,61 @@
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
@@ -5431,6 +9852,139 @@
license = lib.licenses.free;
};
}) {};
+ cfrs = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , posframe
+ , s }:
+ melpaBuild {
+ pname = "cfrs";
+ ename = "cfrs";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "Alexander-Miller";
+ repo = "cfrs";
+ rev = "06c5f82d3ae6ff83ba8bd32f051a89b9c309f360";
+ sha256 = "1gnnfw2cwix82fc3ps8f7irv40k2s043wma2lhkxyknwlgrlhla5";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce16d27a9d73a5eaffebf7b0ff36d90c292248f/recipes/cfrs";
+ sha256 = "03mi5iz0yny2ddvp41l3yc49583zw0wqsv33rkycjfj562903syx";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs posframe s ];
+ meta = {
+ homepage = "https://melpa.org/#/cfrs";
+ 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
@@ -5559,6 +10113,33 @@
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
@@ -5614,6 +10195,184 @@
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
@@ -5640,6 +10399,33 @@
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
@@ -5667,6 +10453,108 @@
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
@@ -5707,6 +10595,33 @@
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
@@ -5761,6 +10676,32 @@
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
@@ -5786,6 +10727,35 @@
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
@@ -5974,6 +10944,133 @@
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
@@ -6027,6 +11124,57 @@
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
@@ -6128,6 +11276,82 @@
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
@@ -6155,6 +11379,32 @@
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
@@ -6316,6 +11566,56 @@
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
@@ -6368,6 +11668,32 @@
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
@@ -6404,7 +11730,7 @@
melpaBuild {
pname = "cmake-mode";
ename = "cmake-mode";
- version = "3.14.1";
+ version = "3.15.0.-1.1";
src = fetchFromGitHub {
owner = "Kitware";
repo = "CMake";
@@ -6447,6 +11773,59 @@
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
@@ -6473,6 +11852,109 @@
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
@@ -6500,6 +11982,57 @@
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
@@ -6527,6 +12060,32 @@
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
@@ -6554,6 +12113,85 @@
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
@@ -6581,6 +12219,107 @@
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
@@ -6657,6 +12396,32 @@
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
@@ -6683,6 +12448,59 @@
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
@@ -6709,6 +12527,83 @@
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
@@ -6745,12 +12640,12 @@
melpaBuild {
pname = "comment-dwim-2";
ename = "comment-dwim-2";
- version = "1.2.2";
+ version = "1.3.0";
src = fetchFromGitHub {
owner = "remyferre";
repo = "comment-dwim-2";
- rev = "8cedecde018b5872195bfead6511af822776a430";
- sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps";
+ rev = "3dfdd58495c46a37708344a57c5c52beca6b2c1c";
+ sha256 = "08pi3y12i6wx69aj09nk5qd6lplwxq5wz3m7w5701988q39x62xl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac6ac97875117013515a36c9a4452fbd6c0d74c/recipes/comment-dwim-2";
@@ -6763,6 +12658,32 @@
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
@@ -6843,6 +12764,32 @@
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
@@ -6877,12 +12824,12 @@
melpaBuild {
pname = "company";
ename = "company";
- version = "0.9.9";
+ version = "0.9.10";
src = fetchFromGitHub {
owner = "company-mode";
repo = "company-mode";
- rev = "ac82e875e144b227e926c09c53def9b0c059115c";
- sha256 = "07zjaaf6nd6zkh0208774lw7bx7cfnl25zfgva51wki20rcq6cjp";
+ rev = "3eda0ba23921d43b733f7975e56d490a34b9f30b";
+ sha256 = "0shmv48bq9l5xm60dwx9lqyq6b39y3d7qjxdlah7dpipv5vhra42";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company";
@@ -6952,6 +12899,185 @@
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
@@ -6992,12 +13118,12 @@
melpaBuild {
pname = "company-coq";
ename = "company-coq";
- version = "1.0";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "cpitclaudel";
repo = "company-coq";
- rev = "bb507a11b088a8c9bb6500b384ed588bc690fcea";
- sha256 = "0s6gzdmxlsl1l0vh52xspxys1wmsq063p6nva6qisg1r622gjzjl";
+ rev = "a4e0625725e4f54d202e746bb41b8bc14c14ddef";
+ sha256 = "0dxi4h8xqq5647k7h89s4pi8nwyj3brlhsckrv3p3b1g4dr6mk3b";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7f89e3097c654774981953ef125679fec0b5b7c9/recipes/company-coq";
@@ -7010,6 +13136,44 @@
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
@@ -7038,6 +13202,32 @@
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
@@ -7150,6 +13340,61 @@
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
@@ -7179,6 +13424,61 @@
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
@@ -7205,6 +13505,34 @@
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
@@ -7291,6 +13619,38 @@
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
@@ -7321,6 +13681,35 @@
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
@@ -7348,6 +13737,60 @@
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
@@ -7413,12 +13856,12 @@
melpaBuild {
pname = "company-php";
ename = "company-php";
- version = "2.0.7";
+ version = "2.1.1";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "11234d073f363edff255e8632b728777e2807d01";
- sha256 = "15rinvamhzbx0n1fxwpq7nbjqgqvksgf4q8k3lkyy6ifchwiqys4";
+ rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b";
+ sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php";
@@ -7459,6 +13902,91 @@
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
@@ -7469,12 +13997,12 @@
melpaBuild {
pname = "company-prescient";
ename = "company-prescient";
- version = "2.2.2";
+ version = "3.1";
src = fetchFromGitHub {
owner = "raxod502";
repo = "prescient.el";
- rev = "562d25a1c3c5b2e269d82f374f450e6aa90a970e";
- sha256 = "1ncplx5p3cffyzg9ygzqqxj0vpvwrz9rp2n4z6c375a78fyydrk0";
+ rev = "ae414dde56f3430867faf41c04e4c3df75f9c960";
+ sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b92c34e493bbefab1d7747b0855d1ab2f984cb7c/recipes/company-prescient";
@@ -7487,6 +14015,33 @@
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
@@ -7515,6 +14070,63 @@
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
@@ -7527,12 +14139,12 @@
melpaBuild {
pname = "company-restclient";
ename = "company-restclient";
- version = "0.1.0";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "iquiw";
repo = "company-restclient";
- rev = "c228f559cf845b4ac8e35728841e5352c1bec3b6";
- sha256 = "0dq7vsk2pp2q6g8wp2agwfn0jjjb80kyq004biyci0p96qxr4li4";
+ rev = "e5a3ec54edb44776738c13e13e34c85b3085277b";
+ sha256 = "0yp0hlrgcr6yy1xkjvfckys2k24x9xg7y6336ma61bdwn5lpv0x0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient";
@@ -7692,6 +14304,63 @@
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
@@ -7751,6 +14420,34 @@
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
@@ -7780,6 +14477,32 @@
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
@@ -7926,6 +14649,83 @@
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
@@ -8006,6 +14806,32 @@
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
@@ -8059,6 +14885,58 @@
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
@@ -8169,6 +15047,34 @@
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
@@ -8194,6 +15100,32 @@
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
@@ -8248,6 +15180,63 @@
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
@@ -8288,12 +15277,12 @@
melpaBuild {
pname = "counsel-etags";
ename = "counsel-etags";
- version = "1.8.3";
+ version = "1.8.4";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "counsel-etags";
- rev = "e6fcff2254383fe680cc1d05580778128da2ca57";
- sha256 = "1d8nlrbsyza6q7yqm9248bxxsf49qf6hchg3zwv0l11acn3w8np5";
+ rev = "e9d396bf39ae12ef1820d5ae7e2928f14ed39189";
+ sha256 = "14my9jvxl26a5yn381h5pi5481y9d9gyk7wnxxd0s4sjc964c5h5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/87528349a3ab305bfe98f30c5404913272817a38/recipes/counsel-etags";
@@ -8317,14 +15306,14 @@
ename = "counsel-gtags";
version = "0.1";
src = fetchFromGitHub {
- owner = "syohex";
+ owner = "FelipeLema";
repo = "emacs-counsel-gtags";
rev = "88c47af65fafaabd908e80dec4cf2aae921581c0";
sha256 = "0qgvic4vdmgr46c0jya80v1ky2v9viqvqgkxzmq4i81zl6f7ad4d";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c7ccc35632219dbec5fdad7401545e7c071b910c/recipes/counsel-gtags";
- sha256 = "12qyb1lnzyd2rr4ankpqi30h0bj66ap5qw87y4605k0j44vhnsax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe8fe6af7826a4b73ac784fde8859130b9ad7096/recipes/counsel-gtags";
+ sha256 = "1vxxcqijn3nab4146p06vhw6dn8zwb7arbk1610bajsvkyid428y";
name = "recipe";
};
packageRequires = [ counsel emacs ];
@@ -8333,6 +15322,117 @@
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
@@ -8360,6 +15460,60 @@
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
@@ -8369,12 +15523,12 @@
melpaBuild {
pname = "counsel-tramp";
ename = "counsel-tramp";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-counsel-tramp";
- rev = "ac7728bac51afdcb63cd85ad22a8be5737d9d66f";
- sha256 = "0nz0733x2b9b5nkwivvhv5c8747dng451na1sdfbkx5x9fjs5gc7";
+ rev = "5ed06027a313b27ab17a8c8fabbc30c0e424c3b2";
+ sha256 = "1qy9lf7cyv6hp9mmpwh92cpdcffbxzyzchx6878d5pmk9qh6xy92";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e1822b735b6bd533f658bd64ddccda29e19e9a5e/recipes/counsel-tramp";
@@ -8387,6 +15541,62 @@
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
@@ -8423,12 +15633,12 @@
melpaBuild {
pname = "coverlay";
ename = "coverlay";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchFromGitHub {
owner = "twada";
repo = "coverlay.el";
- rev = "8205a845d58755dd7640b2e2b5991bf842998935";
- sha256 = "1mppan4ml4dblwxdgr8pli7nj864frc7n7c6h47q4vfb4flg29n0";
+ rev = "0beae208d0e7d746a94385428bd61aa5cd7ea828";
+ sha256 = "1qf1s0997n6bfx50bd0jln25p7z6y8pfibijnbqcg2011xmv5dqh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/coverlay";
@@ -8441,6 +15651,57 @@
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
@@ -8466,6 +15727,85 @@
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
@@ -8519,6 +15859,58 @@
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
@@ -8574,6 +15966,32 @@
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
@@ -8651,6 +16069,58 @@
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
@@ -8704,6 +16174,107 @@
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
@@ -8779,6 +16350,57 @@
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
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "ctune";
+ ename = "ctune";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "maurooaranda";
+ repo = "ctune";
+ rev = "276257231e5c19fa476e01077611b5bbcec9f852";
+ sha256 = "0s9zbgibkfn7yr9dkpbvvprrn2ak62gsfzjmw4qfqgrg4y3s4x7w";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/927ecd888bc00abff13f5fc335a88dffc2bf6779/recipes/ctune";
+ sha256 = "1ymy508h19w6c7z93nww9fzirzk84w24j3dpbj08d08bifndhj1q";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/ctune";
+ license = lib.licenses.free;
+ };
+ }) {};
ctxmenu = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -8859,6 +16481,32 @@
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
@@ -8884,6 +16532,32 @@
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
@@ -8911,6 +16585,32 @@
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
@@ -8936,6 +16636,82 @@
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
@@ -8962,6 +16738,31 @@
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
@@ -8969,7 +16770,7 @@
melpaBuild {
pname = "cython-mode";
ename = "cython-mode";
- version = "0.29.6";
+ version = "0.29.10";
src = fetchFromGitHub {
owner = "cython";
repo = "cython";
@@ -8987,6 +16788,31 @@
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
@@ -9012,6 +16838,31 @@
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
@@ -9064,6 +16915,81 @@
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
@@ -9139,6 +17065,31 @@
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
@@ -9164,6 +17115,157 @@
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
@@ -9227,12 +17329,12 @@
melpaBuild {
pname = "dash";
ename = "dash";
- version = "2.15.0";
+ version = "2.16.0";
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
- rev = "63022432e1f7bcc5af9582f29d4ed0552a2e658b";
- sha256 = "0dx8q3jr8fh73cfl7mqi5dq0012ambpvc74d2c71fsv9rfw85693";
+ rev = "258c324d9840901db83b2cabef3fa75bba57c1ba";
+ sha256 = "150k48llqz2mb66vbznpyj47r6g16amfl7hbg8q46djq8mp7zc2v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash";
@@ -9245,6 +17347,31 @@
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
@@ -9254,7 +17381,7 @@
melpaBuild {
pname = "dash-functional";
ename = "dash-functional";
- version = "2.15.0";
+ version = "2.16.0";
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
@@ -9281,12 +17408,12 @@
melpaBuild {
pname = "dashboard";
ename = "dashboard";
- version = "1.3.1";
+ version = "1.5.0";
src = fetchFromGitHub {
owner = "emacs-dashboard";
repo = "emacs-dashboard";
- rev = "17accfce424a18c4120ad99dfc1d7d93591dbce0";
- sha256 = "0f40xj3wchpj3g9pv15f88vy86d0vllbwr1xli0yfv326lm0j97r";
+ rev = "8494d4fb7e501450abb6e86ad5fcf60b9165fdb6";
+ sha256 = "0ihpcagwgc9qy70lf2y3dvx2bm5h9lnqh4sx6643cr8pp06ysbvq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3c6af6ff5d880e6336f8db32b22b64b182794e/recipes/dashboard";
@@ -9299,6 +17426,34 @@
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
@@ -9407,31 +17562,191 @@
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
, fetchurl
, lib
, melpaBuild
- , projectile
, s
, spinner }:
melpaBuild {
pname = "deadgrep";
ename = "deadgrep";
- version = "0.6";
+ version = "0.7";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "deadgrep";
- rev = "c29f617569a82d67b2061f74c08f431520fc3f54";
- sha256 = "12j84yp94f2763gwpc07zqfi0ikz9n1a5ciyvcpsgfxpj8bkngzx";
+ rev = "1d64c113f562a80147cdb6041a2dd48e5ba2da5d";
+ sha256 = "025xj4hc1k87wmbx2imvxb9brfnajclpd4rj7j1yg85gbk7a99v5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/93389fae7233b83ea904e17bdaf83f8247cda3d8/recipes/deadgrep";
sha256 = "01m5ds7lic9g11a5iwzw86k6xcv56wbbzjm1343ckbbi255h9i09";
name = "recipe";
};
- packageRequires = [ dash emacs projectile s spinner ];
+ packageRequires = [ dash emacs s spinner ];
meta = {
homepage = "https://melpa.org/#/deadgrep";
license = lib.licenses.free;
@@ -9487,6 +17802,32 @@
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
@@ -9512,6 +17853,34 @@
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
@@ -9537,26 +17906,52 @@
license = lib.licenses.free;
};
}) {};
- default-text-scale = callPackage ({ fetchFromGitHub
+ 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
, lib
, melpaBuild }:
melpaBuild {
pname = "default-text-scale";
ename = "default-text-scale";
- version = "0.1";
+ version = "0.2";
src = fetchFromGitHub {
owner = "purcell";
repo = "default-text-scale";
- rev = "c90c08b9fe5f25474067a00c4a4babdb413b25b1";
- sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81";
+ rev = "f425d3765c4dea3f2e550720278f9d424579ee5d";
+ sha256 = "0h42jiwxrxjmk7ccwh3h25n7dy2rq61ncm5wx27jhkncc5jdm4h6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/db5e0b70e2d9c80aa41ae2c397f822789c2d3cc2/recipes/default-text-scale";
sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi";
name = "recipe";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/default-text-scale";
license = lib.licenses.free;
@@ -9614,6 +18009,59 @@
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
@@ -9639,6 +18087,31 @@
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
@@ -9648,12 +18121,12 @@
melpaBuild {
pname = "demangle-mode";
ename = "demangle-mode";
- version = "1.2.2";
+ version = "1.3";
src = fetchFromGitHub {
owner = "liblit";
repo = "demangle-mode";
- rev = "374c84a0b190f0f0ea76b956035003228077d1e0";
- sha256 = "02z2mjillglyv65ijdlc62hbjddp3xv185xg7s93xz7ymg04c394";
+ rev = "06903d731dfde110e10b979dcc7624ef6dbb5ac8";
+ sha256 = "1j0fszql941kmbd3sf3rjynm4g01cgpkq20lvy9ayj3f2cy46ad4";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6ced9f4ffb051a8474d3f72695156416cf2dd8be/recipes/demangle-mode";
@@ -9666,6 +18139,31 @@
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
@@ -9700,12 +18198,12 @@
melpaBuild {
pname = "desktop-environment";
ename = "desktop-environment";
- version = "0.2.0";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "desktop-environment";
- rev = "10df99c6c6805a01acbbdfb7d02dc8cf2780d88d";
- sha256 = "1fal3yfmqg10cb53qsf5gsq2gvyz9w16wmlpnpjwjzwnjfn6l73r";
+ rev = "284c38fcb5b10746255ee4123eaa549e028df0c8";
+ sha256 = "14ija2rrz3zjhjbzxg84j5fq6xph4ah7w9bkqnq37by040cydvhw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dfe988e0dd4a1272ecf7b2fe758ef0c81e2acad2/recipes/desktop-environment";
@@ -9771,6 +18269,135 @@
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
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "dianyou";
+ ename = "dianyou";
+ version = "0.0.3";
+ src = fetchFromGitHub {
+ owner = "redguardtoo";
+ repo = "dianyou";
+ rev = "1a1fe6da3196f91db7b76b6c552ca4f2629e36bf";
+ sha256 = "1bgyq4zrhzlqmfgv3az4csgsrqidlshwjbx4r9l2rydk3k3gl78n";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/059b003c74acdfdd917ecb6fecb782a0f54d155b/recipes/dianyou";
+ sha256 = "1mz3nvr62gfkhbayw7784c8kn8drbiq9hlqv1g5vd9pdfhxqs8jl";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/dianyou";
+ license = lib.licenses.free;
+ };
+ }) {};
diary-manager = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -9797,6 +18424,33 @@
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
@@ -9906,6 +18560,31 @@
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
@@ -9956,6 +18635,86 @@
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
@@ -10089,6 +18848,31 @@
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
@@ -10115,6 +18899,86 @@
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
@@ -10191,6 +19055,86 @@
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
@@ -10294,6 +19238,85 @@
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
@@ -10320,6 +19343,135 @@
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
+ , melpaBuild }:
+ melpaBuild {
+ pname = "dired-rmjunk";
+ ename = "dired-rmjunk";
+ version = "1.2";
+ src = fetchgit {
+ url = "https://git.sr.ht/~jakob/dired-rmjunk";
+ rev = "6a9fa6a35498e53e8c57282e3b08dedc896d880d";
+ sha256 = "0kpkd7qasrb303d0b01d62r82prhrmaasxqa14nf5lh01c213nr4";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75d501ae9b64d9aa083f43358881a467a7cd2a04/recipes/dired-rmjunk";
+ sha256 = "1m07z6gcsd5i1xshgfxqrpcrqpl0ffa9ls2443za5wkgbalhxx47";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/dired-rmjunk";
+ license = lib.licenses.free;
+ };
+ }) {};
dired-rsync = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -10348,6 +19500,33 @@
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
@@ -10373,6 +19552,33 @@
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
@@ -10380,12 +19586,12 @@
melpaBuild {
pname = "dired-toggle";
ename = "dired-toggle";
- version = "0.1.2";
+ version = "0.1.5";
src = fetchFromGitHub {
owner = "fasheng";
repo = "dired-toggle";
- rev = "509bf1f3c6d5e5f9bc29f94d88127e2d82d5c6ed";
- sha256 = "1h91z38bflj1z1zy798a4ngkny2f7gp03xbf222jiyhwc9djgg8q";
+ rev = "5bcdd9f13c0b0149c5125004e93bc2dfd22f3fce";
+ sha256 = "0dghbrx364fihzp5r8ar6vxkavd7mn74qjkijy1wvy34vl0b4911";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/17ae4c5ff42e0c48e53d93c88853f649f59034e6/recipes/dired-toggle";
@@ -10479,24 +19685,23 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild
- , with-editor }:
+ , melpaBuild }:
melpaBuild {
pname = "direnv";
ename = "direnv";
- version = "1.5.0";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "wbolster";
repo = "emacs-direnv";
- rev = "8ad3672c56d65b1eacc012cc51a36ed544b4b160";
- sha256 = "02blhinkkfh3iai6j1k5swplf5mkwijy3p7wy38rnd1gnyj2z4la";
+ rev = "468f2fb20d825dd7134e4efbaff3666917cd4ec3";
+ sha256 = "005ibyzsx1fdyrl5iyhqpb1bg83mphzahq7zvw58x00syyqi2z49";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5419809ee62b920463e359c8e1314cd0763657c1/recipes/direnv";
sha256 = "0zzmi5m6fh42kyf8dyjrjyrl03pkbipnh4mnssrhp83ljczxkyhd";
name = "recipe";
};
- packageRequires = [ dash emacs with-editor ];
+ packageRequires = [ dash emacs ];
meta = {
homepage = "https://melpa.org/#/direnv";
license = lib.licenses.free;
@@ -10553,6 +19758,60 @@
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
@@ -10578,6 +19837,59 @@
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
@@ -10604,6 +19916,60 @@
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
@@ -10629,6 +19995,31 @@
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
@@ -10654,6 +20045,134 @@
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
@@ -10708,6 +20227,31 @@
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
@@ -10734,6 +20278,378 @@
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
@@ -10774,6 +20690,59 @@
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
+ , melpaBuild }:
+ melpaBuild {
+ pname = "docker-cli";
+ ename = "docker-cli";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "bosko";
+ repo = "docker-cli";
+ rev = "328429219574555c5fb831a421b4b5d9a2338561";
+ sha256 = "15jsp1jsb13qv394js9pd6407ya7dgqk7blzbnyf9i9abyyr0v67";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5664de22600c428b7931085985e6fe779e8876b2/recipes/docker-cli";
+ sha256 = "1pyrnxa9iwzp0a810250xy191xcbaq68c76fc5plh70c37gzribp";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/docker-cli";
+ license = lib.licenses.free;
+ };
+ }) {};
docker-compose-mode = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -10854,6 +20823,33 @@
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
@@ -10879,6 +20875,57 @@
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
@@ -10907,7 +20954,6 @@
}) {};
doom-modeline = callPackage ({ all-the-icons
, dash
- , eldoc-eval
, emacs
, fetchFromGitHub
, fetchurl
@@ -10917,19 +20963,19 @@
melpaBuild {
pname = "doom-modeline";
ename = "doom-modeline";
- version = "1.9.6";
+ version = "2.3.2";
src = fetchFromGitHub {
owner = "seagle0128";
repo = "doom-modeline";
- rev = "64f1cf5de1689b76f04575758c07a74f1e9727a0";
- sha256 = "0yklidlr9dv508mzmpnxlffyrc49vs3dxi2axlzf4yd89ng7x4lm";
+ rev = "59c81a0d81e3cb74f9c5fed809ef064519d3ef11";
+ sha256 = "1p96c4hgb4vdclbcbk3xz0jws3py8a3irpzzs7i1sq3svsilf0ha";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f610757f85fb01bd9b1dd212ddbea8f34f3ecd/recipes/doom-modeline";
sha256 = "0pscrhhgk4wpz1f2r94ficgan4f9blbhqzvav1wjahwp7fn5m29j";
name = "recipe";
};
- packageRequires = [ all-the-icons dash eldoc-eval emacs shrink-path ];
+ packageRequires = [ all-the-icons dash emacs shrink-path ];
meta = {
homepage = "https://melpa.org/#/doom-modeline";
license = lib.licenses.free;
@@ -10963,6 +21009,32 @@
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
@@ -10989,6 +21061,31 @@
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
@@ -11015,6 +21112,32 @@
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
@@ -11040,6 +21163,57 @@
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
@@ -11167,6 +21341,110 @@
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
@@ -11218,6 +21496,86 @@
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
@@ -11243,6 +21601,31 @@
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
@@ -11269,6 +21652,32 @@
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
@@ -11299,6 +21708,31 @@
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
@@ -11306,12 +21740,12 @@
melpaBuild {
pname = "dune";
ename = "dune";
- version = "1.8.2";
+ version = "1.10.0";
src = fetchFromGitHub {
owner = "ocaml";
repo = "dune";
- rev = "d7bfa6005cf6043df24d824ffc5a2243e70bce20";
- sha256 = "07c615kfpxawpv1fxlvk5nf48bcf54gs5fhad8fcvmknsq4lj7ib";
+ rev = "060b6acabba7bf0713912afb28e4cdb0461c2199";
+ sha256 = "1mw8jspqf4wxawnshkbbqpnxzzdz576wl6mgnzbh6ddxr9pk2z7w";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/06648d1d37767cbdc7588d7a8f709d679d478a3b/recipes/dune";
@@ -11324,6 +21758,108 @@
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
@@ -11377,6 +21913,57 @@
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
@@ -11429,6 +22016,32 @@
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
@@ -11483,6 +22096,33 @@
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
@@ -11564,28 +22204,79 @@
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
, lib
, melpaBuild
- , popup }:
+ , popup
+ , request }:
melpaBuild {
pname = "easy-hugo";
ename = "easy-hugo";
- version = "3.8.37";
+ version = "3.8.41";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-hugo";
- rev = "e7b6c75a7e46290d9d0cdac9ec56fbf35a6b9c98";
- sha256 = "1xhyky1593qxq7kfbv2ighx957w5pizkki0q77nrvjxlwbqghgz2";
+ rev = "c80b972faa2c3addc472fe6412ca28dc5583b1d6";
+ sha256 = "08lhs0nhd19irssq4w028wyiaf5d2a7pqd1b3hp7rgza411lvwji";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo";
sha256 = "1m7iw6njxxsk82agyqay277iql578b3wz6z9wjs8ls30ps8s2b8g";
name = "recipe";
};
- packageRequires = [ emacs popup ];
+ packageRequires = [ emacs popup request ];
meta = {
homepage = "https://melpa.org/#/easy-hugo";
license = lib.licenses.free;
@@ -11595,23 +22286,24 @@
, fetchFromGitHub
, fetchurl
, lib
- , melpaBuild }:
+ , melpaBuild
+ , request }:
melpaBuild {
pname = "easy-jekyll";
ename = "easy-jekyll";
- version = "2.0.19";
+ version = "2.0.22";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-jekyll";
- rev = "5ee52c0bb01336a03a8f07e072841caf13f86c0a";
- sha256 = "1xibnw3jmmwrc1z7hnifjzhq4mn2834lk7f22x7rwh857iamlply";
+ rev = "6ce93c386ab32f08e23590d71489d8a1bd5a29c5";
+ sha256 = "0vf0966apf815j85nlbj74lqk874jwynfwpn1gnc0krkjgprxkjw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll";
sha256 = "16jj70fr23z5qsaijv4d4xfiiypny2cama8rsaci9fk9haq19lxv";
name = "recipe";
};
- packageRequires = [ emacs ];
+ packageRequires = [ emacs request ];
meta = {
homepage = "https://melpa.org/#/easy-jekyll";
license = lib.licenses.free;
@@ -11760,12 +22452,12 @@
melpaBuild {
pname = "ebib";
ename = "ebib";
- version = "2.16.3";
+ version = "2.16.5";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "ebib";
- rev = "4d842a1eec68e08acc9d4d77d7d7c3014d5cd55e";
- sha256 = "03fkj0grbv9xh1vb441rcxannjmkvaklqziwhxkrij287d2f0ak4";
+ rev = "eb6e7bf8cc525c41150bf5913d965e89e1fbf48d";
+ sha256 = "0jys32kvbcjrc65dwgfzz21g4fnycdhm0pybgk3akb80rv00x1vf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib";
@@ -11778,6 +22470,31 @@
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
@@ -11809,6 +22526,31 @@
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
@@ -11868,6 +22610,61 @@
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
@@ -11894,6 +22691,61 @@
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
@@ -11975,6 +22827,83 @@
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
@@ -12001,6 +22930,34 @@
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
@@ -12051,6 +23008,32 @@
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
@@ -12078,6 +23061,32 @@
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
@@ -12104,6 +23113,59 @@
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
@@ -12159,6 +23221,32 @@
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
@@ -12218,7 +23306,7 @@
melpaBuild {
pname = "egison-mode";
ename = "egison-mode";
- version = "3.7.14";
+ version = "3.8.1";
src = fetchFromGitHub {
owner = "egison";
repo = "egison";
@@ -12264,6 +23352,38 @@
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
@@ -12288,6 +23408,31 @@
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
@@ -12330,6 +23475,32 @@
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
@@ -12411,6 +23582,32 @@
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
@@ -12528,12 +23725,12 @@
melpaBuild {
pname = "el-patch";
ename = "el-patch";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchFromGitHub {
owner = "raxod502";
repo = "el-patch";
- rev = "66510e01598a2c4ce6c973e0b6c1691d8d24c8e6";
- sha256 = "1mvb9fpzj65yfhjcbvbdqjaa8adn64ik8zccpppls3fq656rwbml";
+ rev = "ef56cbc6950dffd91de93009bafe51efb81eb84f";
+ sha256 = "18djslz177q6q33y82zmg2v6n9236a76kiqfvxdk4vbqzjbq82f7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch";
@@ -12546,6 +23743,58 @@
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
@@ -12571,6 +23820,59 @@
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
@@ -12596,6 +23898,31 @@
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
@@ -12649,6 +23976,63 @@
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
@@ -12703,6 +24087,32 @@
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
@@ -12728,6 +24138,59 @@
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
@@ -12756,6 +24219,56 @@
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
@@ -12808,6 +24321,74 @@
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
@@ -12864,6 +24445,58 @@
license = lib.licenses.free;
};
}) {};
+ elgrep = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "elgrep";
+ ename = "elgrep";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "TobiasZawada";
+ repo = "elgrep";
+ rev = "c2c5858f335ac1d0013dc631e5bc2dc16d9b3198";
+ sha256 = "1rlj9cniwk8fzfn1i4apffrikv08r9c2dmwxhqc6nmrhfjr2rf1k";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d9ab623b2d634936a79ff6f4b98b31825d44b6d/recipes/elgrep";
+ sha256 = "0b8dma52zv57sh1jbrabfy6k5lzixs7f541s8dsqyrg0fzlq460j";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/elgrep";
+ 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
@@ -12893,6 +24526,107 @@
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
@@ -12947,6 +24681,31 @@
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
@@ -13055,6 +24814,58 @@
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
@@ -13107,6 +24918,118 @@
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
@@ -13185,6 +25108,32 @@
license = lib.licenses.free;
};
}) {};
+ elpher = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "elpher";
+ ename = "elpher";
+ version = "1.1.0";
+ src = fetchFromGitHub {
+ owner = "tgvaughan";
+ repo = "elpher";
+ rev = "b3f3e8e887f515cff6807b89fe3170b2c83b5333";
+ sha256 = "1y6awpm0ck1b3kcpb5pfxf3la9hlalpk2k9c3g1b2kmll7d63z15";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df2162816fed4d5da7ee5adafbf547eed8815418/recipes/elpher";
+ sha256 = "1csy26ra6kgm2rnf1s6bj254r18zkaf6y7kb3rrjm1msw3vjvvr2";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/elpher";
+ license = lib.licenses.free;
+ };
+ }) {};
elpy = callPackage ({ company
, emacs
, fetchFromGitHub
@@ -13199,12 +25148,12 @@
melpaBuild {
pname = "elpy";
ename = "elpy";
- version = "1.28.0";
+ version = "1.29.1";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "elpy";
- rev = "b4803b554d78941e871cd976ff7828294e85c991";
- sha256 = "073bwxwjzcbmvpcz9q2xjwzx9x7hkvjni6fwvikh6yawzjp56jis";
+ rev = "d98ee26f564e33c9acf233862734e72200bd3703";
+ sha256 = "19sd5p03rkp5yibq1ilwisq8jlma02ks2kdc3swy6r27n4hy90xf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy";
@@ -13225,6 +25174,91 @@
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
@@ -13233,12 +25267,12 @@
melpaBuild {
pname = "elscreen";
ename = "elscreen";
- version = "2018.-4.3.-4.21";
+ version = "20180321";
src = fetchFromGitHub {
owner = "knu";
repo = "elscreen";
- rev = "02164afab2c5fbff6e4aa7c59e0daedc6c504772";
- sha256 = "1jzp7w2c9xl8x8kdxcchgp8s3ygvj70pi2vwwg1qilkya7yv61p0";
+ rev = "cc58337faf5ba1eae7e87f75f6ff3758675688f2";
+ sha256 = "15kffci7qlhjwz1rlr0zg0z9rq0vlsxy295dvg96wiiz4fvs4jk2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e6140694c1dea0a573586d23d1f63d46c9b22936/recipes/elscreen";
@@ -13251,6 +25285,34 @@
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
@@ -13304,6 +25366,61 @@
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
@@ -13332,6 +25449,32 @@
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
@@ -13460,6 +25603,31 @@
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
@@ -13618,6 +25786,33 @@
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
@@ -13643,6 +25838,58 @@
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
@@ -13698,6 +25945,33 @@
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
@@ -13731,11 +26005,11 @@
melpaBuild {
pname = "emms";
ename = "emms";
- version = "5.1";
+ version = "5.2";
src = fetchgit {
url = "https://git.savannah.gnu.org/git/emms.git";
- rev = "47b1054683f4fa0a1ecd9999cb94c5c34994e018";
- sha256 = "1lrkj4gy592mrym0qfb05hydpr7c2sbk6ap5q19zkblizf0gnad6";
+ rev = "2253146e5607e12f62b0c1c474fded1219da2d5d";
+ sha256 = "0r0ai788mn5f3kf5wrp6jywncl2z3gpjif41pm5m0892y7l0vh9i";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/emms";
@@ -13748,6 +26022,85 @@
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
@@ -13775,6 +26128,35 @@
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
@@ -13803,6 +26185,33 @@
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
@@ -13856,6 +26265,31 @@
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
@@ -13881,6 +26315,32 @@
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
@@ -13891,12 +26351,12 @@
melpaBuild {
pname = "emojify";
ename = "emojify";
- version = "1.0";
+ version = "1.2";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "emacs-emojify";
- rev = "9fac58de9b8f7539bfd4c6983bc826e27d060b30";
- sha256 = "1z5j4nr9c6806f6ys4p3b2byxca7zc34ap1bysai8nvzxz02rzf6";
+ rev = "302d16e9bac72faf94984e0c48ecd0e4b8d66738";
+ sha256 = "1fqnj5x7ivjkm5y927dqqnm85q5hzczlb0hrfpjalrhasa6ijsrm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify";
@@ -13909,6 +26369,57 @@
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
@@ -13926,12 +26437,12 @@
melpaBuild {
pname = "emr";
ename = "emr";
- version = "0.3.8";
+ version = "0.4";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "emacs-refactor";
- rev = "f25e3354e5e97deef359aef5386c69dea20b07b0";
- sha256 = "107br10jwza4pwsx8gskh9kp2g28yzxclmwd2l9z137nmf24gm3a";
+ rev = "d7ffe197a617099f673bf3c5f9eb067b8037c8eb";
+ sha256 = "19xz5srffyy7kfpa11sqzfb775vkna486q8kdmh4m16fs2am48zx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/emr";
@@ -13955,6 +26466,57 @@
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
@@ -13988,12 +26550,12 @@
melpaBuild {
pname = "enh-ruby-mode";
ename = "enh-ruby-mode";
- version = "20190325";
+ version = "20190408";
src = fetchFromGitHub {
owner = "zenspider";
repo = "enhanced-ruby-mode";
- rev = "c478bdf32979f7b26068d1df0bd30d737a192b1e";
- sha256 = "13m59n8xzbhn079h6dj2inabscd0pyq9z4p0vz0nhsgak1jq5ccv";
+ rev = "5c5ea7532bfff3c12c2a554d68c5def1dd984a40";
+ sha256 = "1asr52rg3230avq2bwl06nnrgkym98i7gas0xrs2vqyyaxbcpb1h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode";
@@ -14031,6 +26593,33 @@
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
@@ -14096,6 +26685,34 @@
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
@@ -14152,6 +26769,32 @@
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
@@ -14162,12 +26805,12 @@
melpaBuild {
pname = "epkg";
ename = "epkg";
- version = "3.2.0";
+ version = "3.2.1";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "epkg";
- rev = "4243b363d038b28650479b23949cb7dfd319542b";
- sha256 = "0a1cw3jnnm47n0c5l8q4vf3arx244wqs7lcwsjblbnp7svcx0q4h";
+ rev = "1aaa64402bf91575ee81bf240c4c52320f68088d";
+ sha256 = "0ij44yp72y1flcjp2q6yfbrnr4bnzjflgcsksl3djr9nhb73cd5a";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/epkg";
@@ -14215,12 +26858,12 @@
melpaBuild {
pname = "epm";
ename = "epm";
- version = "0.1.-2.2";
+ version = "0.1";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "epm";
- rev = "ee004d00c8c8fbe32c4e5baf6279c5e68dc5f201";
- sha256 = "0llkgjqr9hl66nya1ppvrlcvmy3rh4pwc25ywq4zi0fbl25qsf5d";
+ rev = "6375ddbf93c5f25647f6ebb25b54045b3c93a5be";
+ sha256 = "1m0l0szrwljzsch4xj9a42nflpqfii68g8clizsjwv323h6xff4n";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0/recipes/epm";
@@ -14233,6 +26876,137 @@
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
@@ -14259,6 +27033,34 @@
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
@@ -14284,6 +27086,31 @@
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
@@ -14311,6 +27138,133 @@
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
@@ -14338,6 +27292,31 @@
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
@@ -14363,6 +27342,32 @@
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
@@ -14388,6 +27393,35 @@
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
@@ -14468,6 +27502,33 @@
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
@@ -14476,12 +27537,12 @@
melpaBuild {
pname = "erlang";
ename = "erlang";
- version = "22.0.-1.2";
+ version = "22.0.2";
src = fetchFromGitHub {
owner = "erlang";
repo = "otp";
- rev = "221f6053f7f71747e6e86f9f1122816887cf9d21";
- sha256 = "0jk64dcp46867rja2y5xai626fp2qrvwdfzb6in1x6gl8iyhkc39";
+ rev = "e3ca92be9f1945f50ef84631a826b431bad2bfe6";
+ sha256 = "14sbwlvn4nb33xrss9x3dn74nkzmr1gss029aycfd8sjclyzv1zn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang";
@@ -14519,6 +27580,32 @@
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
@@ -14544,6 +27631,31 @@
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
@@ -14570,6 +27682,35 @@
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
@@ -14735,6 +27876,31 @@
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
@@ -14839,6 +28005,58 @@
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
@@ -14996,6 +28214,58 @@
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
@@ -15024,6 +28294,85 @@
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
@@ -15131,6 +28480,34 @@
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
@@ -15183,6 +28560,34 @@
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
@@ -15236,6 +28641,60 @@
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
@@ -15316,6 +28775,61 @@
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
@@ -15398,6 +28912,91 @@
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
@@ -15426,6 +29025,33 @@
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
@@ -15480,6 +29106,86 @@
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
@@ -15536,6 +29242,251 @@
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
@@ -15563,6 +29514,59 @@
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
@@ -15589,6 +29593,61 @@
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
@@ -15617,6 +29676,34 @@
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
@@ -15725,6 +29812,63 @@
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
@@ -15780,6 +29924,31 @@
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
@@ -15859,6 +30028,62 @@
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
@@ -15885,6 +30110,33 @@
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
@@ -15912,6 +30164,32 @@
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
@@ -16082,12 +30360,12 @@
melpaBuild {
pname = "evil-surround";
ename = "evil-surround";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchFromGitHub {
owner = "emacs-evil";
repo = "evil-surround";
- rev = "1a4bc20f158aa9f4e4811a6363cc65ea24f167ce";
- sha256 = "1sq7692k8ph4czqqg3f5cqlmk10q8mfkrnknnv79l9sza9jqfw9r";
+ rev = "68f7033322dcba3781dddb48465878e896a9f57b";
+ sha256 = "17wxib52qwpfi809lq3c1zsxqprmkk9ghg0q8zc3r7gq2f5d8yy8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9dc47a4c837c44429a74fd998fe468c00639f2/recipes/evil-surround";
@@ -16126,6 +30404,59 @@
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
@@ -16206,6 +30537,115 @@
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
@@ -16232,6 +30672,61 @@
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
@@ -16338,6 +30833,31 @@
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
@@ -16397,12 +30917,12 @@
melpaBuild {
pname = "exec-path-from-shell";
ename = "exec-path-from-shell";
- version = "1.11";
+ version = "1.12";
src = fetchFromGitHub {
owner = "purcell";
repo = "exec-path-from-shell";
- rev = "5e80a4159b1b78d66f99aa1c071b778f6c64e6e6";
- sha256 = "1pqyv78cknj6zwg2xvbxp4qkdjs0bic3w9w3mj7chja4qza83ijg";
+ rev = "76cd6e3fa8a7dac937af7e40507843dfae4f9184";
+ sha256 = "1ga8bpxngd3ph2hdiik92c612ki71qxw818i6rgx6f6a5r0sbf3p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/exec-path-from-shell";
@@ -16423,11 +30943,11 @@
melpaBuild {
pname = "exiftool";
ename = "exiftool";
- version = "0.3.1";
+ version = "0.3.2";
src = fetchgit {
url = "https://git.systemreboot.net/exiftool.el/";
- rev = "4131fa38160dabd5d7143aad8aca5db575749292";
- sha256 = "0lbsa8v39aih8mcvvdm0jang05gm5br5g2fay3lccf73c9aimrfh";
+ rev = "c1058d99c34e62b99dbfca13ada47519fb51bf73";
+ sha256 = "0bv58is66cz21yhc0qqkp1z4nk13zfi2l7i6pjbhyi0g1n88qqyv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4835a76909d020781021e747fbc341111a94dbfa/recipes/exiftool";
@@ -16440,6 +30960,57 @@
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
@@ -16517,6 +31088,32 @@
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
@@ -16568,6 +31165,143 @@
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
@@ -16635,6 +31369,60 @@
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
@@ -16642,12 +31430,12 @@
melpaBuild {
pname = "eziam-theme";
ename = "eziam-theme";
- version = "1.0";
+ version = "1.0.2";
src = fetchFromGitHub {
owner = "thblt";
repo = "eziam-theme-emacs";
- rev = "a2bdda95f840c15240975c32b66d4d1e0682a1e1";
- sha256 = "1z0m3pzhyif1rx8g4gzg1wfdqdkxdaahjjq8hx2fj4k4l16bia99";
+ rev = "4402f58f6d619571c0960b2be5ce5b61962c1a67";
+ sha256 = "0a7jk5k8fhj9klsphyw22khrwb5ns3w85rbzyrdrshhcaqcr88j3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0411583bd4fdbe425eb07de98851136fa1eeb0/recipes/eziam-theme";
@@ -16740,6 +31528,56 @@
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
@@ -16772,12 +31610,12 @@
melpaBuild {
pname = "faff-theme";
ename = "faff-theme";
- version = "2.4";
+ version = "2.5";
src = fetchFromGitHub {
owner = "WJCFerguson";
repo = "emacs-faff-theme";
- rev = "e4721d00852ebd3a745db7e0ed7c9889c013f945";
- sha256 = "0gqi9lzdbn5kh6p8a4kxjfyxb4yakpkac49lyaqcipz6spzhhzf1";
+ rev = "bb331f755f44f8d6db1b35c476948a080a4a40cf";
+ sha256 = "0llhsn79fp8c42hv57539k3zcyaqx0gc27hg21vq9nh8aa0jb6h2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme";
@@ -16790,6 +31628,59 @@
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
@@ -16841,6 +31732,55 @@
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
@@ -16969,6 +31909,31 @@
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
@@ -17019,6 +31984,183 @@
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
@@ -17070,6 +32212,31 @@
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
@@ -17177,6 +32344,106 @@
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
@@ -17203,6 +32470,32 @@
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
@@ -17281,6 +32574,32 @@
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
@@ -17448,6 +32767,133 @@
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
@@ -17474,6 +32920,56 @@
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
@@ -17502,6 +32998,108 @@
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
@@ -17582,6 +33180,85 @@
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
@@ -17635,6 +33312,34 @@
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
@@ -17665,6 +33370,32 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-ameba = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , flycheck
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-ameba";
+ ename = "flycheck-ameba";
+ version = "0.1.0";
+ src = fetchFromGitHub {
+ owner = "veelenga";
+ repo = "ameba.el";
+ rev = "4ccb497067ce41b128eabca17d761e9b7d0ac3df";
+ sha256 = "1sd9c051ipnhm938r30wwqr41bvr2fqhc4n8546hzf3cv56v4d16";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/flycheck-ameba";
+ sha256 = "17jfqbzzb1xkz9yx5ww6pykjnixm5w8mvwva1kqbjs4f2bsqbc6p";
+ name = "recipe";
+ };
+ packageRequires = [ flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-ameba";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-apertium = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -17691,6 +33422,60 @@
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
@@ -17773,6 +33558,113 @@
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
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-clj-kondo";
+ ename = "flycheck-clj-kondo";
+ version = "0.0.1";
+ src = fetchFromGitHub {
+ owner = "borkdude";
+ repo = "flycheck-clj-kondo";
+ rev = "1402fb008f10198f09c55869cd713a99c3e72dff";
+ sha256 = "0ifkkw7mn83hw4yjx81h519fcabvdk73bavs3pbzck69v6li0mmy";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/20dca546bbad0fa7b713dc015d1b9a9b7caf5370/recipes/flycheck-clj-kondo";
+ sha256 = "0a61jq6g0arrsa97rl3frns8k9l9qxazb96ir99y9kskim4njl6r";
+ name = "recipe";
+ };
+ packageRequires = [ flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-clj-kondo";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-clojure = callPackage ({ cider
, emacs
, fetchFromGitHub
@@ -17830,6 +33722,60 @@
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
@@ -17856,6 +33802,218 @@
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
@@ -17883,6 +34041,278 @@
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
@@ -17910,6 +34340,33 @@
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
@@ -17919,11 +34376,11 @@
melpaBuild {
pname = "flycheck-grammalecte";
ename = "flycheck-grammalecte";
- version = "0.7";
+ version = "0.8";
src = fetchgit {
url = "https://git.deparis.io/flycheck-grammalecte/";
- rev = "2f4812eaa6e809051e23c34a085df2b704a15741";
- sha256 = "0xzmr2c74f3375q4nx7zf2jpxawxdkid5mf5nw81wl2v55mv1k2q";
+ rev = "8ba9d41dad0c9c96760614ce7594ceb823f560de";
+ sha256 = "1l2n3vi7krd61bgwj7dg7qpkccimwfx3m0946fmxgrp0k6q41fn0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd82aa0568d998a3d176b5ee47b8a227438ea09/recipes/flycheck-grammalecte";
@@ -18019,6 +34476,33 @@
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
@@ -18047,6 +34531,33 @@
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
@@ -18152,6 +34663,87 @@
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
@@ -18206,6 +34798,59 @@
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
@@ -18243,12 +34888,12 @@
melpaBuild {
pname = "flycheck-objc-clang";
ename = "flycheck-objc-clang";
- version = "2.0.4";
+ version = "3.0.0";
src = fetchFromGitHub {
owner = "GyazSquare";
repo = "flycheck-objc-clang";
- rev = "a3781e47f14068c811534a3348bf479eeb3f2041";
- sha256 = "00a2wg6g74plbmva3bwms7brdlv9i28w51yxisiv04la126m69js";
+ rev = "b46ad43637cebf8467cf596d3e7b5f5d371789e9";
+ sha256 = "0qiva3sfxy0ilf062yd5kyirmimlc5nnl6954ijmf7r31z57n64z";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4ff4412f507371b93cfb85fc744e54110cd87338/recipes/flycheck-objc-clang";
@@ -18317,6 +34962,61 @@
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
@@ -18345,6 +35045,62 @@
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
@@ -18427,6 +35183,60 @@
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
@@ -18453,6 +35263,60 @@
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
@@ -18511,6 +35375,60 @@
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
@@ -18576,12 +35494,12 @@
melpaBuild {
pname = "flycheck-swift3";
ename = "flycheck-swift3";
- version = "2.0.5";
+ version = "3.0.0";
src = fetchFromGitHub {
owner = "GyazSquare";
repo = "flycheck-swift3";
- rev = "ba4e831ff04b180323435214dd4cca8184968ad1";
- sha256 = "1ss2s3q2mv07ph87i2fki1nxq6b51xs4i1mll1faplj2nrr2hyzm";
+ rev = "811a765a0106bbdc8d6a721b22a2a97f3527df7c";
+ sha256 = "0gsiisshqml1s56p9k8lw5fd3mlnk2i9j886ybc7ahkkpq8sfdwz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f1fb8c731c118327dc0bbb726e046fec46bcfb82/recipes/flycheck-swift3";
@@ -18594,6 +35512,60 @@
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
@@ -18649,6 +35621,34 @@
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
@@ -18677,6 +35677,33 @@
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
@@ -18703,6 +35730,33 @@
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
@@ -18759,6 +35813,32 @@
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
@@ -18863,6 +35943,57 @@
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
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "flymake-eslint";
+ ename = "flymake-eslint";
+ version = "1.3.4";
+ src = fetchFromGitHub {
+ owner = "orzechowskid";
+ repo = "flymake-eslint";
+ rev = "d4be92ea779ea333b599fd125817f943a676a63a";
+ sha256 = "1x0ipsg0gd5lflx7kyyaz7zv6xnjzmhh1k32f01qr69zarf31nw0";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b607c3b859f4564e316532a256a299c73e5f6f0/recipes/flymake-eslint";
+ sha256 = "0avirxxgjk3k8hqpnhay83ij7s3xr4ha4wz5lji1zyx6f6im6gyb";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/flymake-eslint";
+ license = lib.licenses.free;
+ };
+ }) {};
flymake-gjshint = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -18888,6 +36019,83 @@
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
@@ -18966,6 +36174,32 @@
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
@@ -19017,6 +36251,32 @@
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
@@ -19043,6 +36303,31 @@
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
@@ -19095,6 +36380,58 @@
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
@@ -19121,6 +36458,32 @@
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
@@ -19147,6 +36510,32 @@
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
@@ -19199,6 +36588,187 @@
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
@@ -19356,6 +36926,33 @@
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
@@ -19412,6 +37009,58 @@
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
@@ -19488,6 +37137,83 @@
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
@@ -19568,6 +37294,57 @@
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
@@ -19598,6 +37375,32 @@
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
@@ -19609,18 +37412,18 @@
, let-alist
, lib
, magit
- , magit-popup
, markdown-mode
- , melpaBuild }:
+ , melpaBuild
+ , transient }:
melpaBuild {
pname = "forge";
ename = "forge";
- version = "0.1.0";
+ version = "20190407.915";
src = fetchFromGitHub {
owner = "magit";
repo = "forge";
- rev = "f5fc99935e2059ddede9766ce4bb96d99dcd203b";
- sha256 = "0jipyqj3r4gkdwpcy0m5ij7x510r2admi8fbzwfysqyrwahs60nv";
+ rev = "d803da1d817453684c644ef2822c7e29cee768e3";
+ sha256 = "1d10wb5j6lnc2r87qhwmfzbs9gav178g8vwsgx9cfhzzk9hyqd02";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/23512cf8152161322960d72a5ec49a7595003477/recipes/forge";
@@ -19636,8 +37439,8 @@
graphql
let-alist
magit
- magit-popup
markdown-mode
+ transient
];
meta = {
homepage = "https://melpa.org/#/forge";
@@ -19669,6 +37472,33 @@
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
@@ -19721,6 +37551,60 @@
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
@@ -19746,6 +37630,85 @@
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
@@ -19774,6 +37737,32 @@
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
@@ -19827,6 +37816,60 @@
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
@@ -19853,6 +37896,31 @@
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
@@ -19997,6 +38065,32 @@
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
@@ -20074,6 +38168,84 @@
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
@@ -20175,6 +38347,31 @@
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
@@ -20201,6 +38398,34 @@
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
@@ -20227,6 +38452,55 @@
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
@@ -20252,6 +38526,32 @@
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
@@ -20307,6 +38607,32 @@
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
@@ -20332,6 +38658,33 @@
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
@@ -20386,6 +38739,33 @@
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
@@ -20493,6 +38873,32 @@
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
@@ -20545,6 +38951,84 @@
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
@@ -20628,6 +39112,84 @@
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
@@ -20759,6 +39321,31 @@
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
@@ -20846,6 +39433,31 @@
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
@@ -20955,6 +39567,61 @@
license = lib.licenses.free;
};
}) {};
+ git-identity = callPackage ({ dash
+ , emacs
+ , f
+ , fetchFromGitHub
+ , fetchurl
+ , hydra
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "git-identity";
+ ename = "git-identity";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "akirak";
+ repo = "git-identity.el";
+ rev = "11d6b495f84d35160c3e25e534e3885d419812f6";
+ sha256 = "13wg28glsdy63x2m99w2d6waadyw3q7hrn7r42hn566b6a85hz04";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebad3a7a81fbf0293ac04ba319929c8b24bb98f5/recipes/git-identity";
+ sha256 = "0kmpm5zp2x60r68in94x2bazq4wxx95n6zfc6mwiq8ln8m0164j0";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs f hydra ];
+ meta = {
+ homepage = "https://melpa.org/#/git-identity";
+ 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
@@ -21034,6 +39701,34 @@
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
@@ -21059,6 +39754,31 @@
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
@@ -21269,6 +39989,57 @@
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
@@ -21295,6 +40066,64 @@
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
@@ -21322,6 +40151,58 @@
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
@@ -21347,6 +40228,32 @@
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
@@ -21385,12 +40292,12 @@
melpaBuild {
pname = "gitlab-ci-mode";
ename = "gitlab-ci-mode";
- version = "20190222.11.8";
+ version = "20190425.11.10";
src = fetchFromGitLab {
owner = "joewreschnig";
repo = "gitlab-ci-mode";
- rev = "ee4bd839c11405f770543d789ad668f0ecc9eaec";
- sha256 = "1qp6h1yyp8259cxygxi1y4r9jk21qd3l46ggnfhz0p6lpqphc5bq";
+ rev = "dac4e5125c78aa3ae12d2e35a66196d709676236";
+ sha256 = "1jkp9mnbiccqnha9zs646znqyqvy5jjb81kah7ghbkzdqqk2avm0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode";
@@ -21431,6 +40338,35 @@
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
@@ -21509,6 +40445,31 @@
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
@@ -21585,6 +40546,86 @@
license = lib.licenses.free;
};
}) {};
+ gn-mode = callPackage ({ cl-lib ? null
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "gn-mode";
+ ename = "gn-mode";
+ version = "0.4.1";
+ src = fetchFromGitHub {
+ owner = "lashtear";
+ repo = "gn-mode";
+ rev = "fcf8e1e500d953364e97e7ebc5708a2c00fa3cd2";
+ sha256 = "0dz5kgzbgsssr38z2kg6m915cvfys42ag1k42bsra3la2pixywfx";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c6c27bce3d0aaf7e3791299a527d5f1fd69653/recipes/gn-mode";
+ sha256 = "1rn4xa1am1yd9k2hpi5b0zhs3pgq4hnhgxdgs258cmhszm8c6ii2";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/gn-mode";
+ 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
@@ -21610,6 +40651,32 @@
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
@@ -21635,6 +40702,56 @@
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
@@ -21687,6 +40804,56 @@
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
@@ -21714,6 +40881,32 @@
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
@@ -21767,6 +40960,33 @@
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
@@ -21802,12 +41022,12 @@
melpaBuild {
pname = "go-dlv";
ename = "go-dlv";
- version = "0.1.0";
+ version = "0.2.0";
src = fetchFromGitHub {
owner = "benma";
repo = "go-dlv.el";
- rev = "45a9e8a047c9995eb7c802268d96b3e527569f41";
- sha256 = "0pph99fl3bwws9vr1r8fs411frd04rfdhl87fy2a75cqcpxlhsj4";
+ rev = "df03ade331d8fb46acc57ef358e696bc36129e04";
+ sha256 = "0sfx84cbxn8d3gsjg0zjam4yc7pjlyp3g94xa3xv91k71ncnijs1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/go-dlv";
@@ -21898,6 +41118,59 @@
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
@@ -21978,6 +41251,31 @@
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
@@ -22031,6 +41329,69 @@
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
@@ -22084,6 +41445,57 @@
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
@@ -22111,6 +41523,57 @@
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
@@ -22136,6 +41599,32 @@
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
@@ -22161,6 +41650,185 @@
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
@@ -22237,6 +41905,58 @@
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
@@ -22393,6 +42113,32 @@
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
@@ -22405,7 +42151,7 @@
melpaBuild {
pname = "govc";
ename = "govc";
- version = "0.20.0";
+ version = "0.20.1";
src = fetchFromGitHub {
owner = "vmware";
repo = "govmomi";
@@ -22423,6 +42169,31 @@
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
@@ -22730,6 +42501,32 @@
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
@@ -22780,6 +42577,83 @@
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
@@ -22805,6 +42679,31 @@
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
@@ -22830,6 +42729,56 @@
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
@@ -22858,6 +42807,56 @@
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
@@ -22998,12 +42997,12 @@
melpaBuild {
pname = "gruvbox-theme";
ename = "gruvbox-theme";
- version = "1.27.0";
+ version = "1.28.0";
src = fetchFromGitHub {
owner = "greduan";
repo = "emacs-theme-gruvbox";
- rev = "f05bfb9d8be4270dc919d14410f16f7da1fcd9e0";
- sha256 = "126kqvgjy71rimr4f7sgnh2j73i3i0s650bx84jl8n4k48x0hwz5";
+ rev = "69a6ddf6c7e8c84174b94900ba71ddd08ec0237f";
+ sha256 = "00qq92gp1g55pzm97rh7k0dgxy44pxziridl8kqm4rbpi31r7k9p";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/gruvbox-theme";
@@ -23016,6 +43015,31 @@
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
@@ -23041,6 +43065,87 @@
license = lib.licenses.free;
};
}) {};
+ gsettings = callPackage ({ dash
+ , emacs
+ , fetchFromGitHub
+ , fetchurl
+ , gvariant
+ , lib
+ , melpaBuild
+ , s }:
+ melpaBuild {
+ pname = "gsettings";
+ ename = "gsettings";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "emacs-gsettings";
+ rev = "1dd9a6a3036d76d8e680b2764c35b31bf5e6aff7";
+ sha256 = "0bv6acy3b6pbjqm24yxgi7xdd3x0c2b7s5sq65sb3lxf8hy5gdf6";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebdd0285684c712748d6353bd2a4774bd97dd521/recipes/gsettings";
+ sha256 = "168zq3gp874k66jv8k78i6b1cb9042763aj9wpmcs9bz437hhw32";
+ name = "recipe";
+ };
+ packageRequires = [ dash emacs gvariant s ];
+ meta = {
+ homepage = "https://melpa.org/#/gsettings";
+ 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
@@ -23125,6 +43230,31 @@
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
@@ -23150,6 +43280,58 @@
license = lib.licenses.free;
};
}) {};
+ gvariant = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , parsec }:
+ melpaBuild {
+ pname = "gvariant";
+ ename = "gvariant";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "emacs-gvariant";
+ rev = "79c34d11ee6a34f190f1641a133d34b0808a1143";
+ sha256 = "18ld0wv8r5wlbicqym8vdw33la0bn59s7bxm2fw0w97qwjka8g8k";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a616ac75f77b1e61e1386bd905b6bcf3d8aaa3f/recipes/gvariant";
+ sha256 = "1ycrnfq60z9fycgqmp1y8jna0l0c2b6mlg6ggimb0rml1ili6npm";
+ name = "recipe";
+ };
+ packageRequires = [ emacs parsec ];
+ meta = {
+ homepage = "https://melpa.org/#/gvariant";
+ 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
@@ -23176,6 +43358,112 @@
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
+ , lib
+ , melpaBuild
+ , s }:
+ melpaBuild {
+ pname = "hack-mode";
+ ename = "hack-mode";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "hhvm";
+ repo = "hack-mode";
+ rev = "59862c38643b355c41a10cf455ec2e5c6739edcd";
+ sha256 = "1imlzp400hjfy011l8aqg2jgq45y8brvp4xfx7q6lsb3hrmzkysl";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27e238e5d2aaca810fd3fb6836ca49c9fa07cc87/recipes/hack-mode";
+ sha256 = "1zs7p6fczj526wz9kvyhmxqkgrkfkkrvm9ma4cg349sfpjpxwkbl";
+ name = "recipe";
+ };
+ packageRequires = [ emacs s ];
+ meta = {
+ homepage = "https://melpa.org/#/hack-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
+ hack-time-mode = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "hack-time-mode";
+ ename = "hack-time-mode";
+ version = "0.1.0";
+ src = fetchFromGitLab {
+ owner = "marcowahl";
+ repo = "hack-time-mode";
+ rev = "95ed4c8a2410e1232453b3a49274a46afb740b1e";
+ sha256 = "083b9kwhh4bq0dwn6iskrrmsgxicqg08p8k6n1m1xadgs61lgkjb";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6481dc9f487c5677f2baf1bffdf8f2297185345e/recipes/hack-time-mode";
+ sha256 = "0vz72ykl679a69sb0r2h9ymcr3xms7bij1w6vxndlfw5v9hg3hk5";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/hack-time-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
hacker-typer = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -23228,6 +43516,31 @@
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
@@ -23255,6 +43568,32 @@
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
@@ -23307,6 +43646,109 @@
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
@@ -23522,11 +43964,11 @@
melpaBuild {
pname = "haskell-tab-indent";
ename = "haskell-tab-indent";
- version = "0.1.0";
+ version = "0.2";
src = fetchgit {
url = "https://git.spwhitton.name/haskell-tab-indent";
- rev = "38d50e9bb8f64ba13ffbd9bcff32db820403a0fc";
- sha256 = "00bjmww8pc9jr4ssqcv7k0migbxl1c8qs2l1khf25fxvgd1nyy02";
+ rev = "b4cb851aef96c42ec7b3cc37b6fdd867fe5a0853";
+ sha256 = "1ah1xagfzsbsgggva621p95qgd0bnsn733gb0ap4p4kgi5hwdqll";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/371f9f45e441cdf4e95557d1e9692619fab3024a/recipes/haskell-tab-indent";
@@ -23539,6 +43981,32 @@
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
@@ -23594,6 +44062,84 @@
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
@@ -23620,6 +44166,58 @@
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
@@ -23646,6 +44244,31 @@
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
@@ -23683,12 +44306,12 @@
melpaBuild {
pname = "helm";
ename = "helm";
- version = "3.1";
+ version = "3.2";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "8de179db41598515f1db758b8d35728a3fd58f18";
- sha256 = "1x3nv8zvp8vvl30bm2d83hd7zxb0ca64pc8kwb81ml9al6r3mm01";
+ rev = "381850225e621c6315e453a98c99229a0d755281";
+ sha256 = "12yyprpgh2by2pd41i4z9gz55fxg0f90x03bfrsf791xwbhf6931";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm";
@@ -23701,6 +44324,33 @@
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
@@ -23728,6 +44378,62 @@
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
@@ -23755,6 +44461,32 @@
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
@@ -23868,6 +44600,86 @@
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
+ , helm-core
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "helm-bitbucket";
+ ename = "helm-bitbucket";
+ version = "0.1.3";
+ src = fetchFromGitHub {
+ owner = "dragonwasrobot";
+ repo = "helm-bitbucket";
+ rev = "632495036c4a6ac30e408fc74ee9f209fd5ac429";
+ sha256 = "0rbgk982jlbqh1rhns3zmndfr3lpw7m2j9z7qylghkll4k8fcjpl";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8df73e21dee5144147f9432efe95ee576ac5f435/recipes/helm-bitbucket";
+ sha256 = "19bflbnavkwipf7mcrkg3i64iz50jmzm64nl7y1ka349mpy5sm04";
+ name = "recipe";
+ };
+ packageRequires = [ emacs helm-core ];
+ meta = {
+ homepage = "https://melpa.org/#/helm-bitbucket";
+ license = lib.licenses.free;
+ };
+ }) {};
helm-bm = callPackage ({ bm
, cl-lib ? null
, fetchFromGitHub
@@ -23923,7 +44735,8 @@
license = lib.licenses.free;
};
}) {};
- helm-bundle-show = callPackage ({ fetchFromGitHub
+ helm-bundle-show = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -23931,24 +44744,51 @@
melpaBuild {
pname = "helm-bundle-show";
ename = "helm-bundle-show";
- version = "1.1.5";
+ version = "1.1.6";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-bundle-show";
- rev = "b34523aa8a7f82ed9a1bf3643c35b65866a7877a";
- sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30";
+ rev = "70f1ca7d1847c7d5cd5a3e488562cd4a295b809f";
+ sha256 = "12wz98fcs8v8w74ck4jqbh47pp5956xxh9ld5kpym9zrm39adpq2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2f10f7387cca102696c38af1d8dc0fe5da5e366f/recipes/helm-bundle-show";
sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-bundle-show";
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
@@ -23977,6 +44817,89 @@
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
@@ -24005,6 +44928,33 @@
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
@@ -24034,6 +44984,58 @@
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
@@ -24129,12 +45131,12 @@
melpaBuild {
pname = "helm-core";
ename = "helm-core";
- version = "3.1";
+ version = "3.2";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "19381fb02817de196dba0f344e06e7751a1816f6";
- sha256 = "1jh4nmmx8iwqdvpwwzq3c6f5hwyla000bmbyc2p5anmfwzsfp0lb";
+ rev = "0f59a63c225f1c9c265cd350359a1c03e42e2d1c";
+ sha256 = "19qrd8157l2cjgi5kc8l7df3y8p7l9zky7idi0gn0cp95463nd57";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core";
@@ -24176,6 +45178,61 @@
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
@@ -24229,6 +45286,60 @@
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
@@ -24283,6 +45394,117 @@
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
@@ -24393,6 +45615,61 @@
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
@@ -24421,6 +45698,34 @@
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
@@ -24449,6 +45754,138 @@
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
@@ -24478,7 +45915,8 @@
license = lib.licenses.free;
};
}) {};
- helm-ghq = callPackage ({ fetchFromGitHub
+ helm-ghq = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -24486,24 +45924,102 @@
melpaBuild {
pname = "helm-ghq";
ename = "helm-ghq";
- version = "1.7.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-ghq";
- rev = "21ccdb537a3be3d9351e01c6365df8e804e8bc56";
- sha256 = "1v3h6dszj223yvlkrjj6r4jwiyaj3iswbcl5d4ffwgaf72cxm4gn";
+ rev = "d0d6aa0f407388e7012f0443df8ae657ece01779";
+ sha256 = "08884pk0d6xplsn1z9slaf4b9mmam6s9dg4dcxi1na1inpi6y082";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e94eec646def7c77b15f6a6ac1841200848e62c7/recipes/helm-ghq";
sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-ghq";
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
@@ -24539,12 +46055,12 @@
melpaBuild {
pname = "helm-github-stars";
ename = "helm-github-stars";
- version = "1.3.6";
+ version = "1.3.7";
src = fetchFromGitHub {
owner = "Sliim";
repo = "helm-github-stars";
- rev = "8cea100f788832ad28c2a61b8fc805298383e263";
- sha256 = "0ml324fi7bqh32d2vg41y13zqj4yx0hsqp5nmb6sw74qics7g9ma";
+ rev = "c891690218b0d8b957ea6cb45b1b6cffd15a6950";
+ sha256 = "0050i3apv72klqi3s0zw5sv4r4sizx4vlw07l52i39ij7bzjhkzz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2e77f4a75504ca3e1091cdc757e91fb1ae361fa7/recipes/helm-github-stars";
@@ -24557,6 +46073,35 @@
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
@@ -24615,6 +46160,84 @@
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
@@ -24642,7 +46265,8 @@
license = lib.licenses.free;
};
}) {};
- helm-hatena-bookmark = callPackage ({ fetchFromGitHub
+ helm-hatena-bookmark = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -24650,19 +46274,19 @@
melpaBuild {
pname = "helm-hatena-bookmark";
ename = "helm-hatena-bookmark";
- version = "2.3.0";
+ version = "2.4.2";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-hatena-bookmark";
- rev = "274e18182fe20c11e96009387a8e38e8cd2a1d7e";
- sha256 = "13s36gyb37asgrc9qca9d196i5bnxqy4acmda5cas08b48wp4lxk";
+ rev = "70b08add4f42ad430441399d266f47773f18835a";
+ sha256 = "007ghf8ac104ifm4idc60zy2rn310kncbcv0qg4wr9djl65n2m95";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark";
sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-hatena-bookmark";
license = lib.licenses.free;
@@ -24696,6 +46320,166 @@
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
@@ -24722,6 +46506,309 @@
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
@@ -24774,6 +46861,92 @@
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
@@ -24884,6 +47057,61 @@
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
@@ -25134,6 +47362,61 @@
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
@@ -25216,6 +47499,33 @@
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
@@ -25297,7 +47607,8 @@
license = lib.licenses.free;
};
}) {};
- helm-qiita = callPackage ({ fetchFromGitHub
+ helm-qiita = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, helm
, lib
@@ -25305,24 +47616,107 @@
melpaBuild {
pname = "helm-qiita";
ename = "helm-qiita";
- version = "1.0.2";
+ version = "1.1.3";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-qiita";
- rev = "1eb97a44ba6fbfe61a0735b0c62171ee5217eda1";
- sha256 = "1swkj65fhk48704ny3x6h95qqm2g21d94vzd8s8qqyjmnajj07i3";
+ rev = "5f82010c595f8e122aa3f68148ba8d8ccb1333d8";
+ sha256 = "1vkm2h0ia0gqqjw6cnbyik0fv37zzjwwdzk1cnh7a3s5hsg60i68";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee/recipes/helm-qiita";
sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm";
name = "recipe";
};
- packageRequires = [ helm ];
+ packageRequires = [ emacs helm ];
meta = {
homepage = "https://melpa.org/#/helm-qiita";
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
@@ -25405,6 +47799,33 @@
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
@@ -25431,6 +47852,34 @@
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
@@ -25458,6 +47907,32 @@
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
@@ -25486,6 +47961,33 @@
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
@@ -25514,6 +48016,60 @@
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
@@ -25598,6 +48154,87 @@
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
@@ -25653,6 +48290,61 @@
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
@@ -25715,12 +48407,12 @@
melpaBuild {
pname = "helm-tramp";
ename = "helm-tramp";
- version = "1.2.6";
+ version = "1.2.7";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-helm-tramp";
- rev = "a7456cee86a83d68c966475fab90ab94006fd23c";
- sha256 = "1yrwv3xzbqndns9lda70vpv75vipgjd5j9s1dx1ggfhx21kbnf9w";
+ rev = "af5bd50b955e385bc447080e720ffc85ed0b286b";
+ sha256 = "0s6zasnk9kwpiw3446n0jn7xi5v6w7asdpzx5aqh85karrb7bbq6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-tramp";
@@ -25817,6 +48509,142 @@
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
@@ -25903,6 +48731,133 @@
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
@@ -25928,6 +48883,56 @@
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
@@ -26004,6 +49009,31 @@
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
@@ -26030,6 +49060,30 @@
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
@@ -26107,6 +49161,108 @@
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
@@ -26132,6 +49288,32 @@
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
@@ -26159,6 +49341,30 @@
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
@@ -26210,6 +49416,56 @@
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
@@ -26235,6 +49491,83 @@
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
@@ -26243,7 +49576,7 @@
melpaBuild {
pname = "hindent";
ename = "hindent";
- version = "5.2.6";
+ version = "5.3.0";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "hindent";
@@ -26261,6 +49594,31 @@
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
@@ -26311,6 +49669,32 @@
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
@@ -26362,6 +49746,57 @@
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
@@ -26388,6 +49823,60 @@
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
@@ -26413,31 +49902,163 @@
license = lib.licenses.free;
};
}) {};
- hl-todo = callPackage ({ fetchFromGitHub
+ hl-todo = callPackage ({ emacs
+ , fetchFromGitHub
, fetchurl
, lib
, melpaBuild }:
melpaBuild {
pname = "hl-todo";
ename = "hl-todo";
- version = "2.2.0";
+ version = "3.0.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "099d0f6d583009b0c5de8e51e38972d6e14e0587";
- sha256 = "1sfpwwkhfv6a9hd8kgb4h9axc3x2mq3z32i6iaz1q1l6w6k8v0r3";
+ rev = "487d349b7b8d6738223d5dd10957dd10b45eb9f3";
+ sha256 = "07xcc04ivpl5sbgb55qz84mz6wa500h0awzw1zq1ba5mfjjq8hls";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo";
sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4";
name = "recipe";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/hl-todo";
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
@@ -26465,6 +50086,58 @@
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
@@ -26493,6 +50166,33 @@
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
@@ -26520,6 +50220,32 @@
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
@@ -26547,6 +50273,82 @@
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
@@ -26573,6 +50375,85 @@
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
@@ -26598,6 +50479,32 @@
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
@@ -26623,6 +50530,110 @@
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
@@ -26704,6 +50715,31 @@
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
@@ -26839,23 +50875,24 @@
, fetchFromGitHub
, fetchurl
, lib
+ , lv
, melpaBuild }:
melpaBuild {
pname = "hydra";
ename = "hydra";
- version = "0.14.0";
+ version = "0.15.0";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "hydra";
- rev = "943636fe4a35298d9d234222bc4520dec9ef2305";
- sha256 = "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg";
+ rev = "f27fce1b2f0a9162e159557bdeb2c0c94defb4d2";
+ sha256 = "0fapvhmhgc9kppf3bvkgry0cd7gyilg7sfvlscfrfjxpx4xvwsfy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/82d9e1bfd501ed2d1cd11319c5e1eb17482e8922/recipes/hydra";
sha256 = "1s1hj70jjbira054q8ly1pcr0818hh91qnhj0zwbv7milmvv2wwd";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib lv ];
meta = {
homepage = "https://melpa.org/#/hydra";
license = lib.licenses.free;
@@ -26888,6 +50925,55 @@
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
@@ -26914,6 +51000,82 @@
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
@@ -26940,6 +51102,58 @@
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
@@ -26991,6 +51205,57 @@
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
@@ -27066,6 +51331,56 @@
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
@@ -27092,6 +51407,33 @@
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
@@ -27172,6 +51514,86 @@
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
@@ -27198,6 +51620,31 @@
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
@@ -27225,6 +51672,58 @@
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
@@ -27251,6 +51750,109 @@
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
@@ -27355,6 +51957,32 @@
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
@@ -27380,6 +52008,31 @@
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
@@ -27430,6 +52083,30 @@
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
@@ -27509,6 +52186,31 @@
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
@@ -27638,6 +52340,33 @@
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
@@ -27646,12 +52375,12 @@
melpaBuild {
pname = "immaterial-theme";
ename = "immaterial-theme";
- version = "0.1.2";
+ version = "0.1.3";
src = fetchFromGitHub {
owner = "petergardfjall";
repo = "emacs-immaterial-theme";
- rev = "b7ad831e49f5f4512f216f1f99b2d0eba3cc0815";
- sha256 = "0p363khj7mz9dq0dm12ksd6aamrkmm5a7vcsp0j8cmbc6r6a060c";
+ rev = "176178a57c5b342b04bebd3107c29c6d12086cf5";
+ sha256 = "0bsx0dh802x58vza9whgkkj6j16c6pcz7gdpvan50dmzs0h0pfz6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9a95d88bb00b1313da82929bc2733d726d2041d7/recipes/immaterial-theme";
@@ -27664,6 +52393,30 @@
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
@@ -27824,6 +52577,86 @@
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
@@ -27854,6 +52687,31 @@
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
@@ -27908,6 +52766,31 @@
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
@@ -27960,6 +52843,32 @@
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
@@ -28037,6 +52946,31 @@
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
@@ -28113,6 +53047,57 @@
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
@@ -28138,6 +53123,32 @@
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
@@ -28188,6 +53199,55 @@
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
@@ -28238,6 +53298,32 @@
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
@@ -28274,12 +53360,12 @@
melpaBuild {
pname = "intero";
ename = "intero";
- version = "0.1.37";
+ version = "0.1.40";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "intero";
- rev = "e5ca92990f0647d2d0e4a6009534910e4d2c7f00";
- sha256 = "0bn4al2q324zlazhlsca7gw2d3s4nmvd24spdqwimfq2y769pb73";
+ rev = "8da81244783fbf03afb49660423c875f2e874fba";
+ sha256 = "17vibxapzp4wf0dfc56x98wsf3wy98ghj5h10nyf7xcfwy6k0rja";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero";
@@ -28292,6 +53378,214 @@
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
@@ -28317,6 +53611,30 @@
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
@@ -28343,6 +53661,32 @@
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
@@ -28368,6 +53712,31 @@
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
@@ -28395,6 +53764,110 @@
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
@@ -28446,6 +53919,109 @@
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
@@ -28472,6 +54048,88 @@
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
@@ -28669,6 +54327,35 @@
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
@@ -28697,6 +54384,33 @@
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
@@ -28708,12 +54422,12 @@
melpaBuild {
pname = "ivy-mpdel";
ename = "ivy-mpdel";
- version = "0.4.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "mpdel";
repo = "ivy-mpdel";
- rev = "f9f745792abfed85d535b4cb5b2a95f944bbad1d";
- sha256 = "1sxd9hny0n751irf87bab0g3ygq6j4g32gdy4yk27y3r00i9g4b6";
+ rev = "a42dcc943914c71975c115195d38c739f25e475c";
+ sha256 = "0zf007j3i9prlsqjaf0xw7ylaim463f867nfc63fpsr508xsn5rd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/ivy-mpdel";
@@ -28726,6 +54440,34 @@
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
@@ -28753,6 +54495,90 @@
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
@@ -28763,12 +54589,12 @@
melpaBuild {
pname = "ivy-prescient";
ename = "ivy-prescient";
- version = "2.2.2";
+ version = "3.1";
src = fetchFromGitHub {
owner = "raxod502";
repo = "prescient.el";
- rev = "562d25a1c3c5b2e269d82f374f450e6aa90a970e";
- sha256 = "1ncplx5p3cffyzg9ygzqqxj0vpvwrz9rp2n4z6c375a78fyydrk0";
+ rev = "ae414dde56f3430867faf41c04e4c3df75f9c960";
+ sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a92495d09689932ab9f0b716078ceeeb9cc154e0/recipes/ivy-prescient";
@@ -28863,6 +54689,146 @@
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
@@ -28967,6 +54933,83 @@
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
@@ -29017,6 +55060,32 @@
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
@@ -29042,6 +55111,107 @@
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
@@ -29070,6 +55240,32 @@
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
@@ -29096,6 +55292,108 @@
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
@@ -29122,6 +55420,36 @@
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
@@ -29179,6 +55507,180 @@
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
@@ -29207,6 +55709,33 @@
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
@@ -29232,6 +55761,115 @@
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
@@ -29259,6 +55897,33 @@
license = lib.licenses.free;
};
}) {};
+ jq-format = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , reformatter }:
+ melpaBuild {
+ pname = "jq-format";
+ ename = "jq-format";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "emacs-jq-format";
+ rev = "47e1c5adb89b37b4d53fe01302d8c675913c20e7";
+ sha256 = "1g9chp1b3lkrg46b39swrkvp5willi0ay3i177jdp6knbzhj4mq3";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce800af0c5dd7f1e4ab7ade92a863ce500c12fce/recipes/jq-format";
+ sha256 = "1ljbpgcs1s1if9s5c10k12f23rad7172k7y3s38ipn7vl7wmarw0";
+ name = "recipe";
+ };
+ packageRequires = [ emacs reformatter ];
+ meta = {
+ homepage = "https://melpa.org/#/jq-format";
+ license = lib.licenses.free;
+ };
+ }) {};
jq-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -29285,6 +55950,58 @@
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
@@ -29311,6 +56028,32 @@
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
@@ -29337,6 +56080,87 @@
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
@@ -29471,6 +56295,33 @@
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
@@ -29575,6 +56426,33 @@
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
@@ -29627,6 +56505,64 @@
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
@@ -29652,6 +56588,55 @@
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
@@ -29660,12 +56645,12 @@
melpaBuild {
pname = "julia-repl";
ename = "julia-repl";
- version = "1.0.2";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "tpapp";
repo = "julia-repl";
- rev = "d8b94c6dbfa47fd51540b9d5b1bb0c2dfce3ebc2";
- sha256 = "027ib0i5af23s3kxsfbxh3jgw944crry0v4c7yxz9l8r8p3wpq1k";
+ rev = "6eb58ef8b2e922e042fb0aee399547291fce06a4";
+ sha256 = "05siwlyafga6ihksmd4v7dlhn1c3f6vg4ns255apm7vnmfryzvkf";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9a2a494969a9caf2f4513b12504379c9685047dc/recipes/julia-repl";
@@ -29678,6 +56663,59 @@
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
@@ -29706,6 +56744,31 @@
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
@@ -29731,6 +56794,57 @@
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
@@ -29743,12 +56857,12 @@
melpaBuild {
pname = "jupyter";
ename = "jupyter";
- version = "0.7.3";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "dzop";
repo = "emacs-jupyter";
- rev = "83af335166a28e131159fc95586a0d0abe8efde4";
- sha256 = "1bq6lsip5m8ci8j8h26lj892zims6d76jv713bry3pzc66lj6570";
+ rev = "112769e0c679fb95db25128051e67bb22ff36ed5";
+ sha256 = "1sda8zn1c583ccw8g5rzzyf47ganmkgga5dym2kx78ayhk50jjbc";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a63a933e193a52e60950331ec982c5f5cdfaa5d9/recipes/jupyter";
@@ -29788,6 +56902,33 @@
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
@@ -29893,6 +57034,109 @@
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
@@ -29903,12 +57147,12 @@
melpaBuild {
pname = "kaolin-themes";
ename = "kaolin-themes";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "ogdenwebb";
repo = "emacs-kaolin-themes";
- rev = "08eac2883e87ad8cf17331a86fa447a7a8bc73b4";
- sha256 = "06wl0zmxxv2gx9cka80sa7s3kra756nn8w1d6z4d5banwcc8nmjm";
+ rev = "0aba840acbfafb87efbbdbb33f9353c8b8698978";
+ sha256 = "1cnx29arfz9rm8ma2lkgl024s0x7ryzqq9lhhr7181z3vzjh47k5";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4/recipes/kaolin-themes";
@@ -29921,6 +57165,61 @@
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
@@ -29946,6 +57245,56 @@
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
@@ -29996,6 +57345,57 @@
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
@@ -30030,12 +57430,12 @@
melpaBuild {
pname = "keycast";
ename = "keycast";
- version = "0.1.3";
+ version = "0.1.4";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keycast";
- rev = "7c45ff05c1e9b50a3304da71906764b6c4f6f3a4";
- sha256 = "0bbzdjy66f8xpckkrcic1r9g9zw3d243nvp5mm4yfc9qdnx1hr6p";
+ rev = "fe416461b15543138ad4fef8ef5e2c364a6b5b2c";
+ sha256 = "15q2kc7mlmr856ldh6bkba26zq8fwia26cv1gsqwj3jmhml6mlq1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaf62c586818f2493667ad6ec8877234a58da53/recipes/keycast";
@@ -30149,6 +57549,32 @@
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
@@ -30176,6 +57602,112 @@
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
@@ -30280,6 +57812,60 @@
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
@@ -30287,12 +57873,12 @@
melpaBuild {
pname = "kivy-mode";
ename = "kivy-mode";
- version = "1.10.1";
+ version = "1.11.0";
src = fetchFromGitHub {
owner = "kivy";
repo = "kivy";
- rev = "0c63c698fdf3f283581dcb53f2909a0bf7ab2737";
- sha256 = "0jn16i7qnf80irxi149cfn8z38czii8paazfs8mz1qzgmx2ycj2i";
+ rev = "3e57ac0b07385384619a8042dafcab89cc10da57";
+ sha256 = "1pm0660x688rpgns9jpzg1y08pavp65dazm1aznkvpnvdhy2zs93";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode";
@@ -30332,6 +57918,58 @@
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
@@ -30357,7 +57995,215 @@
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
, fetchurl
, lib
@@ -30365,24 +58211,51 @@
melpaBuild {
pname = "ksp-cfg-mode";
ename = "ksp-cfg-mode";
- version = "0.5.1";
+ version = "0.6";
src = fetchFromGitHub {
owner = "lashtear";
repo = "ksp-cfg-mode";
- rev = "fda64705f605fb8fccee53a5040fe4865ca17d44";
- sha256 = "19brscxk85cky2kzwyyljz6xqrfvyyyg7dqmadlnlrf8kw9wnb2x";
+ rev = "faec8bd8456c67276d065eb68c88a30efcef59ef";
+ sha256 = "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode";
sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/ksp-cfg-mode";
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
@@ -30438,6 +58311,60 @@
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
@@ -30465,6 +58392,82 @@
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
@@ -30490,6 +58493,83 @@
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
@@ -30516,6 +58596,33 @@
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
@@ -30543,6 +58650,34 @@
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
@@ -30595,6 +58730,55 @@
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
@@ -30620,6 +58804,135 @@
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
@@ -30673,6 +58986,37 @@
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
@@ -30757,6 +59101,107 @@
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
@@ -30787,6 +59232,33 @@
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
@@ -30837,6 +59309,107 @@
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
@@ -30889,6 +59462,57 @@
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
@@ -30897,12 +59521,12 @@
melpaBuild {
pname = "libmpdel";
ename = "libmpdel";
- version = "0.7.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "mpdel";
repo = "libmpdel";
- rev = "fcc719c2f23df4b5838eab76a40fef11055203de";
- sha256 = "0qw6rrb16bbhwg1gci4ymn2nshzf21lcf2nyphxbn4vcv400cw4k";
+ rev = "38633ef7a1a40740d1a9528c4f0f0d40d489d9fe";
+ sha256 = "1fk4irsx916q81qpy6d6iarg8q30r1xm9syz63i8pfdf08l6wphj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/libmpdel";
@@ -30940,6 +59564,59 @@
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
@@ -30965,6 +59642,32 @@
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
@@ -31040,6 +59743,84 @@
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
@@ -31065,6 +59846,121 @@
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
@@ -31073,31 +59969,24 @@
, iedit
, lib
, melpaBuild
- , multiple-cursors
- , swiper }:
+ , swiper
+ , zoutline }:
melpaBuild {
pname = "lispy";
ename = "lispy";
- version = "0.26.0";
+ version = "0.27.0";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "lispy";
- rev = "7756a8fbbadbebbd5e20768569ed92ad6c402c5c";
- sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l";
+ rev = "9c41bc011ae570283cb286659f75d12d38d437ea";
+ sha256 = "1cm7f4pyl73f3vhkb7ah6bbbrj2sa7n0p31g09k7dy4zgx04bgw6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy";
sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g";
name = "recipe";
};
- packageRequires = [
- ace-window
- emacs
- hydra
- iedit
- multiple-cursors
- swiper
- ];
+ packageRequires = [ ace-window emacs hydra iedit swiper zoutline ];
meta = {
homepage = "https://melpa.org/#/lispy";
license = lib.licenses.free;
@@ -31128,6 +60017,60 @@
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
@@ -31232,6 +60175,58 @@
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
@@ -31312,6 +60307,32 @@
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
@@ -31348,7 +60369,7 @@
melpaBuild {
pname = "live-py-mode";
ename = "live-py-mode";
- version = "2.25.0";
+ version = "2.25.1";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
@@ -31391,6 +60412,163 @@
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
@@ -31398,12 +60576,12 @@
melpaBuild {
pname = "load-relative";
ename = "load-relative";
- version = "1.0";
+ version = "1.3.1";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-load-relative";
- rev = "15ffaa9ebf1b7bbfcc307d1716eec135253b3b8d";
- sha256 = "1fq4bnngbh9a18hq8mvnqkzs74k3g4c0lmwsncbhy6n21njv3kdy";
+ rev = "5055bfd80644e306aef4e7a7e3e9e5d765b691a4";
+ sha256 = "1w2xvnihk607vnmlmqz7zsjksd3mscjx2igdadxsfz398bjwl0qd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f052f201f7c308325c27cc2423e85cf6b9b67b4e/recipes/load-relative";
@@ -31416,6 +60594,31 @@
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
@@ -31441,6 +60644,82 @@
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
@@ -31466,6 +60745,30 @@
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
@@ -31517,6 +60820,80 @@
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
@@ -31545,6 +60922,82 @@
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
@@ -31570,6 +61023,31 @@
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
@@ -31596,6 +61074,87 @@
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
@@ -31611,12 +61170,12 @@
melpaBuild {
pname = "lsp-java";
ename = "lsp-java";
- version = "2.1";
+ version = "2.2";
src = fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-java";
- rev = "17a1ec97e30b0690c5f79bc8223f23b7e7dfe577";
- sha256 = "11gpd3yy2018s6m3s3pzkhknhgbs7cf38jsg6ma5lidmygjivpjc";
+ rev = "527e7b7abc11b51516b9bb52051201c2cdcd4a39";
+ sha256 = "0hcnvbyaqyypgby1bfj4zbrbq97amk8hfx0sj4w73rl46yf4jk3j";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c03cb07862c5f35487fb4fb3cc44623774724717/recipes/lsp-java";
@@ -31638,6 +61197,34 @@
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
@@ -31695,6 +61282,93 @@
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
@@ -31750,6 +61424,59 @@
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
@@ -31782,12 +61509,12 @@
melpaBuild {
pname = "lv";
ename = "lv";
- version = "0.14.0";
+ version = "0.15.0";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "hydra";
- rev = "a07b92a8755dfb064701210b634e2dc4839552ac";
- sha256 = "11k0ifmr90vdinibhyqqyqrmpxbn9c5pjpzhr4p66wv6249s540w";
+ rev = "5c5b9ca3262594c92f8f73c98db5ed0f1efd0319";
+ sha256 = "0dvh4sg1s76jy41vsy6dh3a4b8vr5msldnyssmqzdqwrsw64hl6r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5114349617617673d5055fe28cb8f8c86cf41f83/recipes/lv";
@@ -31800,6 +61527,31 @@
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
@@ -31827,6 +61579,60 @@
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
@@ -31879,6 +61685,34 @@
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
@@ -31930,6 +61764,58 @@
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
@@ -31957,6 +61843,58 @@
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
@@ -31979,8 +61917,8 @@
sha256 = "1kw94sdczswsyzn1zlk5s5aplpdv4qd7qcqc5zfxsmsfwm3jacl4";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ac8feccfa0f4eb5bda2ef561a6be66ba145c00e0/recipes/magit";
- sha256 = "03iv74rgng5fcy3qfr76hiy0hj6x2z0pis1yj8wm1naq5rc55hjn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f963950d69a944443d9b6a1658799f7860d0f93/recipes/magit";
+ sha256 = "13fipghvlzbx2d4dwxmm1hhnnd28davdp8rjqhq8g4g0lcn3h8b1";
name = "recipe";
};
packageRequires = [
@@ -32188,6 +62126,34 @@
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
@@ -32215,6 +62181,35 @@
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
@@ -32243,6 +62238,62 @@
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
@@ -32339,12 +62390,12 @@
melpaBuild {
pname = "magit-todos";
ename = "magit-todos";
- version = "1.1.7";
+ version = "1.2";
src = fetchFromGitHub {
owner = "alphapapa";
repo = "magit-todos";
- rev = "42dde9c5df2e0d59b30faf866e0a9e9a75cd4be0";
- sha256 = "0qagdxpik64n4rw9scy451ws5sw00v64ri9g2dcw7b66bx2c6c6w";
+ rev = "61dc0edae2dd55b11b675e7b27bbd7019d8d80a3";
+ sha256 = "17a18gszbypz82bj36xbfyykc4s9rz83vwmpxvlf65svhd51c0nh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b4544ab55d2c8b8c3b7eb739b9fb90ebb246d68b/recipes/magit-todos";
@@ -32415,6 +62466,86 @@
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
@@ -32443,6 +62574,34 @@
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
@@ -32468,6 +62627,62 @@
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
@@ -32550,6 +62765,205 @@
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
@@ -32631,6 +63045,31 @@
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
@@ -32709,6 +63148,32 @@
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
@@ -32767,6 +63232,58 @@
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
@@ -32818,6 +63335,34 @@
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
@@ -32846,6 +63391,32 @@
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
@@ -32909,8 +63480,8 @@
src = fetchFromGitHub {
owner = "vspinu";
repo = "math-symbol-lists";
- rev = "e15ec26a010b4f38111bc150c51ecb1a319f6bdb";
- sha256 = "11jk0xdlc8zk2way1d85n2khmydzzvpjhh8bbjbdsv8d1z3j9yfh";
+ rev = "499986959356f7a905fd4f2a1609c17d7ff067c3";
+ sha256 = "1h6fwj2w77gm4wafqll5bd6r8xafh6f4a0piqmgjvcwxy2sxrk0q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/math-symbol-lists";
@@ -32923,6 +63494,81 @@
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
@@ -33028,6 +63674,57 @@
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
@@ -33054,6 +63751,31 @@
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
@@ -33122,12 +63844,12 @@
melpaBuild {
pname = "meghanada";
ename = "meghanada";
- version = "1.0.13";
+ version = "1.2.0";
src = fetchFromGitHub {
owner = "mopemope";
repo = "meghanada-emacs";
- rev = "5f792cfe77b77aced5e70a118aba159f6e59234a";
- sha256 = "0scj5wdd9xhpfj5cvjib8x9hzfkylb5h484ndch0vc1l79nlb650";
+ rev = "81a2a5da2b645701bed6eb09d606b3968f1df2ca";
+ sha256 = "0lns4w1n31nvpv14x7kcdq1m3k1isdqmdnkdav854hg154fibxqa";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4c75c69b2f00be9a93144f632738272c1e375785/recipes/meghanada";
@@ -33140,6 +63862,57 @@
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
@@ -33191,6 +63964,33 @@
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
@@ -33227,12 +64027,12 @@
melpaBuild {
pname = "merlin";
ename = "merlin";
- version = "3.2.2";
+ version = "3.3.0";
src = fetchFromGitHub {
owner = "ocaml";
repo = "merlin";
- rev = "8bcd99c8e5de984f04966674dcbb1c40c5d89045";
- sha256 = "1dd9mj8z6xpbvvgp489nxsscj8hcar4mx920d61cyxnxgz1phq5p";
+ rev = "800c793870c7ff3b00a6817ab16b03628c6495eb";
+ sha256 = "0yx92lybw685ay5qd8jpdxwfdjmhhbrpkpi94gysq9bmh0kqhixr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/9338298a79b7f2d654df90b0f553aeed1428de13/recipes/merlin";
@@ -33298,6 +64098,31 @@
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
@@ -33323,6 +64148,84 @@
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
@@ -33374,6 +64277,31 @@
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
@@ -33382,12 +64310,12 @@
melpaBuild {
pname = "mgmtconfig-mode";
ename = "mgmtconfig-mode";
- version = "0.0.18";
+ version = "0.0.19";
src = fetchFromGitHub {
owner = "purpleidea";
repo = "mgmt";
- rev = "f01eea33e9b396f1e7501944216271d0d9b8df6f";
- sha256 = "19grypbx6kxgdlqnj1h7rz2clvrwk98z5sk9dar0077ncp2k1f80";
+ rev = "07f542b4d753fe2f182b5e139450217a633491f8";
+ sha256 = "0nbj3fh3wsl9065mad04c7avc2pq4lqrdng1xkwdng6l361f2wak";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf3dd70ae73c2b049e201a3547bbeb9bb117983/recipes/mgmtconfig-mode";
@@ -33408,12 +64336,12 @@
melpaBuild {
pname = "mhc";
ename = "mhc";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "mhc";
- rev = "a0a7e01587c47b11f4aa87ac977ca43298a75570";
- sha256 = "1wxyp4snkarbbrqb1a28hdf286cwf08v0fbi9pl9mw4q7sn598s2";
+ rev = "88b5f938e57c28e9e2db202770f952fc0ecba945";
+ sha256 = "13d31wz7wyh777isimxlkdimj3vbl54bh0f00p15a8xlrs2pn7f3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba/recipes/mhc";
@@ -33426,6 +64354,85 @@
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
@@ -33477,6 +64484,107 @@
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
@@ -33577,6 +64685,31 @@
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
@@ -33630,6 +64763,82 @@
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
@@ -33681,6 +64890,32 @@
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
@@ -33707,6 +64942,31 @@
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
@@ -33734,6 +64994,83 @@
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
@@ -33768,12 +65105,12 @@
melpaBuild {
pname = "mocha-snippets";
ename = "mocha-snippets";
- version = "1.0.0";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "cowboyd";
repo = "mocha-snippets.el";
- rev = "e054137bd78f0d236e983874da1f345d30a71816";
- sha256 = "0lxc5zhb03jpy48ql4mn2l35qhsdwav4dkxyqim72b7c75cy1cml";
+ rev = "361a3809f755577406e109b9e44d473dfa7c08e0";
+ sha256 = "0xcybq0cwd0c33bi1jf7h098a4anc4gkj3m1c97gc8mz9x4fjksy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/93c472e3d7f318373342907ca7253253ef12dab8/recipes/mocha-snippets";
@@ -33941,6 +65278,31 @@
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
@@ -33966,6 +65328,81 @@
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
@@ -33992,6 +65429,82 @@
license = lib.licenses.free;
};
}) {};
+ monky = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "monky";
+ ename = "monky";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "ananthakumaran";
+ repo = "monky";
+ rev = "099f1af9d3f6f6143f5e98a9b844f965a011a120";
+ sha256 = "1fgn7al4zwz2k5wb5dy3byqg9lsrjk9fra341mxh5ma2pfwxjgps";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc/recipes/monky";
+ sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/monky";
+ 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
@@ -34017,6 +65530,32 @@
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
@@ -34042,6 +65581,58 @@
license = lib.licenses.free;
};
}) {};
+ mood-line = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mood-line";
+ ename = "mood-line";
+ version = "1.1.0";
+ src = fetchFromGitLab {
+ owner = "jessieh";
+ repo = "mood-line";
+ rev = "f926b6f6c66a15b3af9b8a1d155d7e6f9e506107";
+ sha256 = "0h97gxiw44fpdslahk6dzw5m8jcz3r268d4b4h0b1i1mdlz3d9pf";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b10524f105943648ecf52f007f363b7b5534865e/recipes/mood-line";
+ sha256 = "0wj8rdgsqsdd2ps3w7sj8a7yhhz0iczwgnalalzws42x8s9yn4j0";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mood-line";
+ license = lib.licenses.free;
+ };
+ }) {};
+ mood-one-theme = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "mood-one-theme";
+ ename = "mood-one-theme";
+ version = "1.0.2";
+ src = fetchFromGitLab {
+ owner = "jessieh";
+ repo = "mood-one-theme";
+ rev = "6a5ef88ca47973b7ecf0a87d89933e7a7ea943ba";
+ sha256 = "1r5idjrc9xxwg4ih157igh5ijara3g7wi0cp5xvrjlbzxlk8ybz2";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44fbe8c54e4052e6c38849a12425db8f7c04fcc1/recipes/mood-one-theme";
+ sha256 = "1ar3vsc0d838m2k54f4v8a4mc0g21qa9rmgr2wb763vb7vpcznmi";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mood-one-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
moody = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -34094,6 +65685,59 @@
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
@@ -34145,6 +65789,86 @@
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
@@ -34271,6 +65995,84 @@
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
@@ -34299,6 +66101,31 @@
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
@@ -34308,12 +66135,12 @@
melpaBuild {
pname = "mpdel";
ename = "mpdel";
- version = "0.6.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "mpdel";
repo = "mpdel";
- rev = "a1e05828e3bc03679530b4cfff1306706171cb78";
- sha256 = "1avfhkklhkkazy1b0ymcmc0walrs29ak36vbvaxs480r5s16dkjd";
+ rev = "a2da2f2fe2357641909514da788f7c6cbe5801f4";
+ sha256 = "0pyyvbzskr44dxbmlp3y0r6s459fd51cvwjmnjaqxfxflr5v891g";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/mpdel";
@@ -34383,6 +66210,32 @@
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
@@ -34410,6 +66263,33 @@
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
@@ -34421,12 +66301,12 @@
melpaBuild {
pname = "msvc";
ename = "msvc";
- version = "1.3.7";
+ version = "1.4.1";
src = fetchFromGitHub {
owner = "yaruopooner";
repo = "msvc";
- rev = "dfc529aa6da8b46b0a0c7db9a0e5e9bc33ab1fb3";
- sha256 = "19n9an0nznwqw3ml022i6vidqbrgxf4yff0nbvvcb91ppc1saf40";
+ rev = "c3b86fb517e95c9ae4d6b851984f4f4ed1864c06";
+ sha256 = "0mn12za94ciqfagia3ga7azl86abxa41191vlczh8kwspwci4x1h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/69939b85353a23f374cab996ede879ab315a323b/recipes/msvc";
@@ -34465,6 +66345,32 @@
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
@@ -34494,6 +66400,59 @@
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
@@ -34519,6 +66478,58 @@
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
@@ -34545,6 +66556,33 @@
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
@@ -34575,6 +66613,31 @@
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
@@ -34652,6 +66715,56 @@
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
@@ -34678,6 +66791,33 @@
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
@@ -34731,6 +66871,161 @@
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
@@ -34756,6 +67051,57 @@
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
@@ -34783,6 +67129,32 @@
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
@@ -34810,6 +67182,31 @@
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
@@ -34837,6 +67234,33 @@
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
@@ -34865,6 +67289,111 @@
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
@@ -34918,6 +67447,132 @@
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
@@ -34971,6 +67626,31 @@
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
@@ -34997,6 +67677,31 @@
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
@@ -35047,6 +67752,31 @@
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
@@ -35101,6 +67831,57 @@
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
@@ -35177,6 +67958,32 @@
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
@@ -35202,6 +68009,186 @@
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
+ , melpaBuild
+ , typescript-mode }:
+ melpaBuild {
+ pname = "ng2-mode";
+ ename = "ng2-mode";
+ version = "0.2.2";
+ src = fetchFromGitHub {
+ owner = "AdamNiederer";
+ repo = "ng2-mode";
+ rev = "57e6e4e388624853bc3b79bf5b17d2663ce26fa5";
+ sha256 = "08dm8clw3xm0c3xcbl3q4dm9n7cxhpldnwxjaxs1glc5l21qdg4q";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a856ecd8aca2d9232bb20fa7019de9e1dbbb19f4/recipes/ng2-mode";
+ sha256 = "0sr4yh5nkgqb1qciq9mzzhr64350bi2wjm6z9d616nkjw72saz1r";
+ name = "recipe";
+ };
+ packageRequires = [ typescript-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/ng2-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
nginx-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -35252,6 +68239,34 @@
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
@@ -35278,6 +68293,32 @@
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
@@ -35308,6 +68349,32 @@
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
@@ -35361,6 +68428,35 @@
license = lib.licenses.free;
};
}) {};
+ nix-haskell-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , flycheck
+ , haskell-mode
+ , lib
+ , melpaBuild
+ , nix-mode }:
+ melpaBuild {
+ pname = "nix-haskell-mode";
+ ename = "nix-haskell-mode";
+ version = "0.0.2";
+ src = fetchFromGitHub {
+ owner = "matthewbauer";
+ repo = "nix-haskell-mode";
+ rev = "1622924f0f6668f9b42f135323087ba94b1bf252";
+ sha256 = "09x4b939y0w4irnkvpxhn1jkzy4id9vhfkl5b9f14jjdny2d6l3a";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aeb879e2e8b017d3e1ccdc8d19f17d09b2ad5f1b/recipes/nix-haskell-mode";
+ sha256 = "1rygqmq01p27gbda6hgnzisng7xqf63x462a3x31ym67ivxsyqz3";
+ name = "recipe";
+ };
+ packageRequires = [ emacs flycheck haskell-mode nix-mode ];
+ meta = {
+ homepage = "https://melpa.org/#/nix-haskell-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
nix-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -35387,6 +68483,59 @@
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
@@ -35442,6 +68591,113 @@
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
@@ -35450,12 +68706,12 @@
melpaBuild {
pname = "no-littering";
ename = "no-littering";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchFromGitHub {
owner = "emacscollective";
repo = "no-littering";
- rev = "5a6f483dca3c8a2dcf3a56ab07ffbea21b2926a1";
- sha256 = "0r45bz68d3bx1bnnp28gkyw9rsnly5dy2b9h1b2gjn1hpfs7clci";
+ rev = "99ae007ead688689b5b25a9482f98ec67663bb61";
+ sha256 = "0sg4qh9a6k1m24qamsf7ldpghjcawbdgh114gy08jnw478nf05kv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/no-littering";
@@ -35468,6 +68724,35 @@
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
@@ -35493,6 +68778,83 @@
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
@@ -35544,6 +68906,57 @@
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
@@ -35596,6 +69009,81 @@
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
@@ -35603,11 +69091,11 @@
melpaBuild {
pname = "notmuch";
ename = "notmuch";
- version = "0.28.3";
+ version = "0.29.-1.1";
src = fetchgit {
url = "https://git.notmuchmail.org/git/notmuch";
- rev = "3c752b855f900f5251df9997514b4d27d9f38e83";
- sha256 = "07k5bsifxlsy6caqgk467cfgqw3mgfb5cqb80nc5v4fcjfh0wwcv";
+ rev = "9300defd64acf68b8e6fa6fbd89b8050168bb63d";
+ sha256 = "09myljmmrcr4f6a93zwi8k39nndw2fmpj3g2jk2bl3ddql8x0gvl";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d05fbde3aabfec4efdd19a33fd2b1297905acb5a/recipes/notmuch";
@@ -35674,6 +69162,32 @@
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
@@ -35725,6 +69239,34 @@
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
@@ -35802,6 +69344,120 @@
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
@@ -35853,6 +69509,57 @@
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
@@ -35907,6 +69614,57 @@
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
@@ -35932,6 +69690,84 @@
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
@@ -35961,6 +69797,32 @@
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
@@ -35986,6 +69848,110 @@
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
@@ -36011,6 +69977,268 @@
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
@@ -36064,6 +70292,113 @@
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
@@ -36089,6 +70424,58 @@
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
@@ -36114,6 +70501,57 @@
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
@@ -36168,6 +70606,58 @@
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
@@ -36223,6 +70713,33 @@
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
@@ -36248,6 +70765,31 @@
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
@@ -36274,6 +70816,31 @@
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
@@ -36301,6 +70868,131 @@
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
@@ -36378,6 +71070,84 @@
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
@@ -36403,29 +71173,80 @@
license = lib.licenses.free;
};
}) {};
- olivetti = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
+ old-norse-input = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
melpaBuild {
- pname = "olivetti";
- ename = "olivetti";
- version = "1.6.1";
+ pname = "old-norse-input";
+ ename = "old-norse-input";
+ version = "20170816.1142";
src = fetchFromGitHub {
- owner = "rnkn";
- repo = "olivetti";
- rev = "02272654f1d920ea2da5a4b553acd5e5cc096ab1";
- sha256 = "0f7i2f42mlr27d9wa9h2zvz0k0xyqvwndzgz81x8gsm0w1iv15k9";
+ owner = "david-christiansen";
+ repo = "emacs-old-norse-input";
+ rev = "c2e21ee72c3768e9152aff6baf12a19cde1d0c53";
+ sha256 = "0zybr1v91884p4ncrpr962pr02qsns6hf7kc4c5gyad8sg4pbvxh";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/697334ca3cdb9630572ae267811bd5c2a67d2a95/recipes/olivetti";
- sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84780a6ebd1b2294b86ae8c6df5bd6521cf4e85a/recipes/old-norse-input";
+ sha256 = "1g00h6ykf61ckr6f3r17j72w3h04p5q65aa3rhr5llk3jk1wv331";
name = "recipe";
};
packageRequires = [ emacs ];
meta = {
- homepage = "https://melpa.org/#/olivetti";
+ 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;
};
}) {};
@@ -36565,6 +71386,34 @@
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
@@ -36611,6 +71460,137 @@
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
@@ -36637,6 +71617,82 @@
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
@@ -36719,6 +71775,55 @@
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
@@ -36744,6 +71849,32 @@
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
@@ -36853,6 +71984,31 @@
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
@@ -36983,6 +72139,33 @@
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
@@ -37008,6 +72191,58 @@
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
@@ -37035,6 +72270,87 @@
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
@@ -37044,12 +72360,12 @@
melpaBuild {
pname = "org-clock-csv";
ename = "org-clock-csv";
- version = "1.1";
+ version = "1.2";
src = fetchFromGitHub {
owner = "atheriel";
repo = "org-clock-csv";
- rev = "20ab6ee4395bedc0a7b8dfaf7b51f2c63dc8d2c6";
- sha256 = "00lcvmls7zlkqmsi0yfiihyxv49803jlc9khcbqawxlkijvr65pm";
+ rev = "e2fbaa1ad1a1be40fceecde603a600b292b76acc";
+ sha256 = "1fpjga40v2wlkvq4ap75hd844m47gm55dkraznqz078k5f8fx8kk";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e023cb898699f76f6c3d9ffe8162aacfc6a8c34f/recipes/org-clock-csv";
@@ -37062,6 +72378,58 @@
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
@@ -37090,7 +72458,58 @@
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
, fetchurl
, lib
@@ -37100,23 +72519,49 @@
melpaBuild {
pname = "org-d20";
ename = "org-d20";
- version = "0.2";
+ version = "0.3";
src = fetchgit {
url = "https://git.spwhitton.name/org-d20";
- rev = "a88a3bb5e43940c2965edd8de27ecf7a2065d86b";
- sha256 = "08s05hpyg52qhvf487cy8x6p2ln8mkiw49kmcavmkmpss2zsqdpn";
+ rev = "e0fb2c04a55c55cbf59a85a0b2e23ef18370ca61";
+ sha256 = "1q5s2gj1968z23qf7ds2ychvvnzmlayh1v16krf0lf3zj7a3k20s";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/98bf91038196dfb59c491c9ed96c6b6a0cb311a9/recipes/org-d20";
sha256 = "158n900ifb1mfckd0gjmb9gpzibh8a2x56flbn2r035gcdbb7wc5";
name = "recipe";
};
- packageRequires = [ dash s seq ];
+ packageRequires = [ dash emacs s seq ];
meta = {
homepage = "https://melpa.org/#/org-d20";
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
@@ -37142,6 +72587,33 @@
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
@@ -37194,6 +72666,90 @@
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
@@ -37221,6 +72777,33 @@
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
@@ -37248,6 +72831,32 @@
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
@@ -37277,6 +72886,31 @@
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
@@ -37335,6 +72969,32 @@
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
@@ -37386,6 +73046,34 @@
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
@@ -37442,6 +73130,32 @@
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
@@ -37471,6 +73185,60 @@
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
@@ -37524,6 +73292,34 @@
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
@@ -37562,12 +73358,12 @@
melpaBuild {
pname = "org-mime";
ename = "org-mime";
- version = "0.1.5";
+ version = "0.1.6";
src = fetchFromGitHub {
owner = "org-mime";
repo = "org-mime";
- rev = "0db41d5b4e9ef9df640e7212a22708ce636b3986";
- sha256 = "0lcn69vzx5987yz4byxvnk8z7nc2bbww7my6v0hxqkra9xh0iqlm";
+ rev = "f8eac8ccdec2ebf1dec87d4f5f01b4b53f86c67c";
+ sha256 = "0gjdhhri2fm93phvv3fnw6iz5agpafryacj521j80jf1dmj2bj5h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/521678fa13884dae69c2b4b7a2af718b2eea4b28/recipes/org-mime";
@@ -37580,6 +73376,60 @@
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
@@ -37588,12 +73438,12 @@
melpaBuild {
pname = "org-mru-clock";
ename = "org-mru-clock";
- version = "0.2.1";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "unhammer";
repo = "org-mru-clock";
- rev = "0e2dcb7799fb82bbe55c8aa9930192871e8b6109";
- sha256 = "08z6jc7qhj7zmzf1sag1n4nqh77k1dis2ijc6s2pzqlaxm3rhxyw";
+ rev = "a816e173ee22ff96f0fef6c54316e2583192af32";
+ sha256 = "09zcnvz4mgw1lak5vnpa9b4r4gpskviyl2jwpjqmwqgvjhw31g0v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b36bf1c1faa4d7e38254416a293e56af96214136/recipes/org-mru-clock";
@@ -37606,6 +73456,33 @@
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
@@ -37634,6 +73511,34 @@
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
@@ -37662,6 +73567,91 @@
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
@@ -37716,6 +73706,33 @@
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
@@ -37769,6 +73786,36 @@
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
@@ -37796,6 +73843,60 @@
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
@@ -37822,6 +73923,33 @@
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
@@ -37905,6 +74033,33 @@
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
@@ -37932,6 +74087,34 @@
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
@@ -37942,12 +74125,12 @@
melpaBuild {
pname = "org-re-reveal";
ename = "org-re-reveal";
- version = "1.0.3";
+ version = "1.1.5";
src = fetchFromGitLab {
owner = "oer";
repo = "org-re-reveal";
- rev = "50cc6574c77f12d423f6cd096d8f76feb3673abc";
- sha256 = "1v3z30gpimg4spf6zzqwp9b597zxk89h0vpq6xp58js4rjg4ixk8";
+ rev = "9d4a1bee112db8007c0e0a1fcb6be725f787a79a";
+ sha256 = "1pq3ynp441j1vhac0cz98r2riqw2187vdwc33hz92924kly66m9h";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3e6c90a6b9004fbf0fbc08556f8effbcde8b468/recipes/org-re-reveal";
@@ -37960,32 +74143,31 @@
license = lib.licenses.free;
};
}) {};
- org-readme = callPackage ({ fetchFromGitHub
- , fetchurl
- , header2
- , http-post-simple
- , lib
- , lib-requires
- , melpaBuild
- , yaoddmuse }:
+ org-re-reveal-ref = callPackage ({ emacs
+ , fetchFromGitLab
+ , fetchurl
+ , lib
+ , melpaBuild
+ , org-re-reveal
+ , org-ref }:
melpaBuild {
- pname = "org-readme";
- ename = "org-readme";
- version = "20130322.926";
- src = fetchFromGitHub {
- owner = "mattfidler";
- repo = "org-readme";
- rev = "15054e42351b5ec6b629c55760a578516e035355";
- sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a";
+ 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/317318e6071b174e0ec6302ea4f526976d837db4/recipes/org-readme";
- sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/391ef29288507aa2b0ad5d568419b66e5a883b2f/recipes/org-re-reveal-ref";
+ sha256 = "0dd5b4g8ih98ma25jwlvdwgfadc75qcxr9zm74x5r6pr87amcb7n";
name = "recipe";
};
- packageRequires = [ header2 http-post-simple lib-requires yaoddmuse ];
+ packageRequires = [ emacs org-re-reveal org-ref ];
meta = {
- homepage = "https://melpa.org/#/org-readme";
+ homepage = "https://melpa.org/#/org-re-reveal-ref";
license = lib.licenses.free;
};
}) {};
@@ -38018,6 +74200,58 @@
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
@@ -38089,6 +74323,58 @@
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
@@ -38115,6 +74401,59 @@
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
@@ -38141,6 +74480,61 @@
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
@@ -38252,6 +74646,34 @@
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
@@ -38545,6 +74967,32 @@
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
@@ -38570,6 +75018,31 @@
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
@@ -38630,6 +75103,37 @@
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
@@ -38660,6 +75164,88 @@
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
@@ -38730,6 +75316,60 @@
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
@@ -38814,6 +75454,138 @@
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
@@ -38839,6 +75611,35 @@
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
@@ -38917,6 +75718,32 @@
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
@@ -38942,6 +75769,31 @@
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
@@ -38993,6 +75845,83 @@
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
@@ -39019,6 +75948,56 @@
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
@@ -39070,6 +76049,32 @@
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
@@ -39205,6 +76210,85 @@
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
@@ -39257,6 +76341,32 @@
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
@@ -39284,6 +76394,32 @@
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
@@ -39313,6 +76449,165 @@
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
@@ -39342,6 +76637,165 @@
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
@@ -39369,6 +76823,138 @@
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
@@ -39394,6 +76980,33 @@
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
@@ -39403,12 +77016,12 @@
melpaBuild {
pname = "ox-wk";
ename = "ox-wk";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchFromGitHub {
owner = "w-vi";
repo = "ox-wk.el";
- rev = "9fc37e7e2f789b0ba07cb117ea1e1dcd14a2fd83";
- sha256 = "00wsx21nmnvci2wfvxaci1kdxplavi2a4dw8ahvl7ncr3b60219f";
+ rev = "3da2213be1874d9d3e8a9337b09003d9c102b943";
+ sha256 = "0aw6ykcgyn6p7hhggyd7jfyx9b25pr0vgnlfvcwhjc3w0lm94yi1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/0947993df2d9bee493c2c25760f1ac5bcc1136ac/recipes/ox-wk";
@@ -39421,6 +77034,31 @@
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
@@ -39525,6 +77163,31 @@
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
@@ -39683,6 +77346,88 @@
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
@@ -39708,6 +77453,82 @@
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
@@ -39737,6 +77558,61 @@
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
@@ -39841,6 +77717,61 @@
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
@@ -39853,12 +77784,12 @@
melpaBuild {
pname = "paradox";
ename = "paradox";
- version = "2.5.3";
+ version = "2.5.4";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "paradox";
- rev = "3d918ad74448eb4715be8ac25406e20be552017a";
- sha256 = "1hmkizglppky16k6v1ahxq1awcn8k2x82yrgdvsgkl29qg9s3fkl";
+ rev = "d24fe4a329a939ffa1983886d77a6937e05149e4";
+ sha256 = "1v78nmqyx60ki64wql7faq6ihv2qbk72sb19cy6hnypi546d81yp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox";
@@ -39871,6 +77802,32 @@
license = lib.licenses.free;
};
}) {};
+ parchment-theme = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "parchment-theme";
+ ename = "parchment-theme";
+ version = "0.2.2";
+ src = fetchFromGitHub {
+ owner = "ajgrf";
+ repo = "parchment";
+ rev = "7d48ae9b39c37eeef7ab5bf7ee049d2edf0411a6";
+ sha256 = "071k34i48dsmlgpi8mpdff1fgcnz29dj2ci52c1i3alp9yc7s67a";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2302f512053b22e5abbd6a654cf94e4d5c7f5ca/recipes/parchment-theme";
+ sha256 = "1dkl1f0zmnkw8xd89m5kd42rk4pg6a6wnm52g4p1b4yqqq27h6zm";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/parchment-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
paredit = callPackage ({ fetchgit
, fetchurl
, lib
@@ -39921,6 +77878,58 @@
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
@@ -40024,6 +78033,31 @@
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
@@ -40104,6 +78138,60 @@
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
@@ -40186,6 +78274,56 @@
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
@@ -40243,6 +78381,85 @@
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
@@ -40321,6 +78538,31 @@
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
@@ -40399,6 +78641,56 @@
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
@@ -40425,6 +78717,135 @@
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
@@ -40504,6 +78925,31 @@
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
@@ -40532,6 +78978,109 @@
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
@@ -40582,6 +79131,108 @@
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
@@ -40688,6 +79339,34 @@
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
@@ -40775,12 +79454,12 @@
melpaBuild {
pname = "pfuture";
ename = "pfuture";
- version = "1.6";
+ version = "1.7";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "pfuture";
- rev = "766cfb7d2df8ebc6144fb644d4d858f66657f60d";
- sha256 = "1zjkpanfxhdfq75dy5x2m541qxpcnh67d7aiijdgkb0g5v3yb61d";
+ rev = "263227534e8bb98aedce18698c34db9fd4d6500b";
+ sha256 = "13r1f741rk5k35s413iyh1kng20zmp29qr4bzlxg8wjl7d8q6da2";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb70c9f56a58b5c7a2e8b69b191aa2fc7c9bcc8/recipes/pfuture";
@@ -40793,6 +79472,56 @@
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
@@ -40819,6 +79548,36 @@
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
@@ -40847,6 +79606,83 @@
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
@@ -40872,6 +79708,32 @@
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
@@ -40899,6 +79761,83 @@
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
@@ -40926,6 +79865,57 @@
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
@@ -40952,6 +79942,31 @@
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
@@ -40961,12 +79976,12 @@
melpaBuild {
pname = "php-mode";
ename = "php-mode";
- version = "1.21.1";
+ version = "1.21.4";
src = fetchFromGitHub {
owner = "emacs-php";
repo = "php-mode";
- rev = "bcde734c37ca36e6c2a925038760247b09ca8825";
- sha256 = "0shrssfjbqykpyz8kmchizgcl2m29bxp1n1331csi0lnqkb9v540";
+ rev = "a8ee6ce7c1c319b2b641865ebd599cc36d2dc10e";
+ sha256 = "1gqawn8bg9374swxb4bd2z015v16yjr96am1vwsbmgks3lhiw8ja";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/2e41dc09413eaa93704e7d9f55bd2bd01f658806/recipes/php-mode";
@@ -40979,6 +79994,31 @@
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
@@ -41008,6 +80048,34 @@
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
@@ -41078,8 +80146,8 @@
sha256 = "0wb9pshgcrq2w9d9fpkywz299ihcb9fffh3fdk8rm1r8irylrjkh";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5a2b6cc39957e6d7185bd2bdfa3755e5b1f474a6/recipes/phpstan";
- sha256 = "0j3xb3h6fqgk0nv5mlfz7lgfkcy0z04an9qy8nq5y473hdj87qzm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/43808f57146a395b92ed498803fa948a33e5f3c2/recipes/phpstan";
+ sha256 = "1nx9d4mhxhvbgrxawkpkw03b75bg1xpli1x83g2bhs8ar8lypjik";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -41088,6 +80156,34 @@
license = lib.licenses.free;
};
}) {};
+ phpt-mode = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , php-mode
+ , polymode }:
+ melpaBuild {
+ pname = "phpt-mode";
+ ename = "phpt-mode";
+ version = "0.0.1";
+ src = fetchFromGitHub {
+ owner = "emacs-php";
+ repo = "phpt-mode";
+ rev = "310579e5db57c344460f74239bd1a8fc0d6ddf33";
+ sha256 = "1zgnnzad0sr5qh665i3shcf18y121di8za99girkzgzjcv309r35";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59a0e7aabf45c98b1ecf9db49f6420a6e051733b/recipes/phpt-mode";
+ sha256 = "1isq3l6qhya5vafmcqbda7r0irdmgvmlmdg98n7h8yck5imi78yf";
+ name = "recipe";
+ };
+ packageRequires = [ emacs php-mode polymode ];
+ meta = {
+ homepage = "https://melpa.org/#/phpt-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
phpunit = callPackage ({ cl-lib ? null
, emacs
, f
@@ -41118,6 +80214,160 @@
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
@@ -41144,6 +80394,31 @@
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
@@ -41196,6 +80471,58 @@
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
@@ -41272,6 +80599,115 @@
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
@@ -41374,6 +80810,57 @@
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
@@ -41382,12 +80869,12 @@
melpaBuild {
pname = "plantuml-mode";
ename = "plantuml-mode";
- version = "1.2.9";
+ version = "1.2.10";
src = fetchFromGitHub {
owner = "skuro";
repo = "plantuml-mode";
- rev = "2b84a2df523904c180a3556c851f59beb0e070d7";
- sha256 = "0l4nxda55ipbrzy0nj59d1vf97m2h9ydviq9r7hiw4mjfq31lzsv";
+ rev = "92c490d3fc07b4cfa8c5263c15a4bbc16d10da9e";
+ sha256 = "1xmhgc49jyxj7wwlzhpjrdh4nynxjf3dlwg77hgzdracgldq8sra";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/38e74bb9923044323f34473a5b13867fe39bed25/recipes/plantuml-mode";
@@ -41400,6 +80887,32 @@
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
@@ -41479,6 +80992,57 @@
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
@@ -41504,6 +81068,31 @@
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
@@ -41587,6 +81176,30 @@
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
@@ -41594,11 +81207,11 @@
melpaBuild {
pname = "po-mode";
ename = "po-mode";
- version = "0.19.8.1";
+ version = "20180505.415";
src = fetchgit {
url = "https://git.savannah.gnu.org/git/gettext.git";
- rev = "7fa0c2779d7de8a263271abfbe684185dbf6898b";
- sha256 = "1w154dzp98kjqsid4g0jq7cnpm4mivgffgjks6gr89dssq9qc3yh";
+ rev = "a57ffdb2f17d040a737e84114544fcd748fa87fa";
+ sha256 = "19qg3l6w2lapjv73yvjiy5mj6j8kv7ch1gjpx2b86y2y5mqrqii7";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/po-mode";
@@ -41611,6 +81224,33 @@
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
@@ -41641,6 +81281,33 @@
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
@@ -41685,6 +81352,110 @@
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
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "poe-lootfilter-mode";
+ ename = "poe-lootfilter-mode";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "jdodds";
+ repo = "poe-lootfilter-mode";
+ rev = "5ef06684cb2b17b090ee1f303c2b789fa71bc106";
+ sha256 = "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/006f39eaf8a87822fe8becab1da2822ff6fc2beb/recipes/poe-lootfilter-mode";
+ sha256 = "0iw3a2lf0mnv3lamphy458nfyjjm1yvln1syfad49av3karca05z";
+ name = "recipe";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/poe-lootfilter-mode";
+ 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
@@ -41710,6 +81481,83 @@
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
@@ -41721,12 +81569,12 @@
melpaBuild {
pname = "poly-R";
ename = "poly-R";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-R";
- rev = "876e1324ce3bc2b6e3b84e03d08d4b5cd06018c6";
- sha256 = "0xjlrdwp7vhk05lq9hkbm8gqda5valxc6siiydrwmpa79n8dbqxd";
+ rev = "0443c89b4d2bc2ed235a0c017109c2dbd342aa02";
+ sha256 = "1v5djxwgqksf84pxfpgbm7qaz3yq5ha7cac0792p62pj1ydzvghi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-R";
@@ -41777,12 +81625,12 @@
melpaBuild {
pname = "poly-erb";
ename = "poly-erb";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-erb";
- rev = "aa8a40a1bb1035144b1cbc053d87305f70a442a7";
- sha256 = "0zsvywh9xs9wb6x70b7j3cpavbx7846p772qlqd141y2lcp1jss9";
+ rev = "304204f415b9e46ee36b64531b7d170540828335";
+ sha256 = "0v13ssv9fjardg5as832hkhlx7yhjcdkm3bdcdj0qy31cmvk6dzb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-erb";
@@ -41805,12 +81653,12 @@
melpaBuild {
pname = "poly-markdown";
ename = "poly-markdown";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-markdown";
- rev = "bf41bd2f30066573f562c674d38b9e42a43ed016";
- sha256 = "0w2xy1cksik332qs1i26imxiyd89vbfy3ff7di4b3l14cxz6ybra";
+ rev = "b0de1a9f3e4d7191b1b23b65ebf03dd0ac007afc";
+ sha256 = "0b6wlmhrpcw9g8rbw7q7k5fr2lgcp1rpy7d9p9f0gzn52yvcr4dr";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-markdown";
@@ -41832,12 +81680,12 @@
melpaBuild {
pname = "poly-noweb";
ename = "poly-noweb";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-noweb";
- rev = "f27f09184573c579bfcd164ba995e8b5bfb84954";
- sha256 = "096a2bm1i2ngyv4gdy0gz8bnwmgr50b4chvryxg2fh840p07540f";
+ rev = "4e65cb22d6bca901021205257f867f868989c665";
+ sha256 = "1pnjg615i5p9h5fppvn36vq2naz4r1mziwqjwwxka6kic5ng81h8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-noweb";
@@ -41859,12 +81707,12 @@
melpaBuild {
pname = "poly-org";
ename = "poly-org";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-org";
- rev = "2465f1d252940f13555252ef7b8e4d02ee3956ce";
- sha256 = "1xw6h7qcva4529vs8v13gsw5zdcgc1sky7i3vbhcchxkm3d4ffdb";
+ rev = "8b0de75b1f9b65c22f7e3fbc205c9408214c8a1f";
+ sha256 = "04x6apjad4kg30456z1j4ipp64yjgkcaim6hqr6bb0rmrianqhck";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-org";
@@ -41886,12 +81734,12 @@
melpaBuild {
pname = "poly-rst";
ename = "poly-rst";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-rst";
- rev = "68f5e9ee448f4da33d2acab4874d8c9e91190d16";
- sha256 = "14wgfncwsnb4xs2qcr04d0my7dndjkq79q5gr6bjf74vys6a37ra";
+ rev = "1a7d38e1c1d35cf64e4dad408db486a8e1931e61";
+ sha256 = "1xzbznm43hsvmg2ibqa6a1rymfy85nagjsxadn5mj9r04ivhf2fd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/d3fb89f58903245a8df75060ddd695a05cedb322/recipes/poly-rst";
@@ -41941,12 +81789,12 @@
melpaBuild {
pname = "poly-slim";
ename = "poly-slim";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "poly-slim";
- rev = "2216d7edf315ab8df1e01c2a826041bcdb8bcd01";
- sha256 = "0wcfacd5wpi52glfz4snxh8ghff2qlv8d1jwj890297ikmk7mn1g";
+ rev = "a4fb8166d110b82eb3f1d0b4fc87045c3308bd7d";
+ sha256 = "06kwhmw5r5h4bsaqscr7dl3rfsa6wp642597zcmzdly94h26iwy9";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-slim";
@@ -41967,12 +81815,12 @@
melpaBuild {
pname = "polymode";
ename = "polymode";
- version = "0.1.5";
+ version = "0.2";
src = fetchFromGitHub {
owner = "polymode";
repo = "polymode";
- rev = "06c4329fdf765b4f9072e20906c8737a19e6646b";
- sha256 = "0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7";
+ rev = "82a0c3d71cc02e32a347033b3f42afeac4e43f66";
+ sha256 = "04v0gnzfsjb50bgly6kvpryx8cyzwjaq2llw4qv9ijw1l6ixmq3b";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/polymode";
@@ -41994,12 +81842,12 @@
melpaBuild {
pname = "pomidor";
ename = "pomidor";
- version = "0.2";
+ version = "0.3";
src = fetchFromGitHub {
owner = "TatriX";
repo = "pomidor";
- rev = "3f9186e4dc8fe8bf06b8f2ac9c68ecd8aafb4a65";
- sha256 = "19bz3pg3s265wpcwb458i84138z170rgd1qybn6vrll2brvwsf8b";
+ rev = "590e64d316d9210bd00cb4eb39d2f07ddc16809a";
+ sha256 = "0001k4p09il5f20s0jgyi96wzslfcgv3y35wfxj771gixlacnrhi";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0d4f313081594df23f357c40feb456847d8bd0/recipes/pomidor";
@@ -42012,6 +81860,56 @@
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
@@ -42092,6 +81990,31 @@
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
@@ -42144,6 +82067,32 @@
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
@@ -42172,6 +82121,60 @@
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
@@ -42197,6 +82200,33 @@
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
@@ -42248,6 +82278,84 @@
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
@@ -42274,6 +82382,33 @@
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
@@ -42299,6 +82434,34 @@
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
@@ -42351,6 +82514,31 @@
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
@@ -42359,12 +82547,12 @@
melpaBuild {
pname = "prescient";
ename = "prescient";
- version = "2.2.2";
+ version = "3.1";
src = fetchFromGitHub {
owner = "raxod502";
repo = "prescient.el";
- rev = "562d25a1c3c5b2e269d82f374f450e6aa90a970e";
- sha256 = "1ncplx5p3cffyzg9ygzqqxj0vpvwrz9rp2n4z6c375a78fyydrk0";
+ rev = "ae414dde56f3430867faf41c04e4c3df75f9c960";
+ sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ec02349e31531c347e4a43fbde56ae4386898cc6/recipes/prescient";
@@ -42377,6 +82565,31 @@
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
@@ -42404,6 +82617,56 @@
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
@@ -42458,6 +82721,133 @@
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
@@ -42484,6 +82874,32 @@
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
@@ -42513,6 +82929,31 @@
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
@@ -42540,6 +82981,82 @@
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
@@ -42620,6 +83137,57 @@
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
@@ -42647,6 +83215,62 @@
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
@@ -42674,6 +83298,35 @@
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
@@ -42759,6 +83412,33 @@
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
@@ -42817,6 +83497,34 @@
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
@@ -42843,6 +83551,60 @@
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
@@ -42868,6 +83630,32 @@
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
@@ -42920,6 +83708,85 @@
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
@@ -42927,7 +83794,7 @@
melpaBuild {
pname = "protobuf-mode";
ename = "protobuf-mode";
- version = "3.7.1";
+ version = "3.8.0";
src = fetchFromGitHub {
owner = "google";
repo = "protobuf";
@@ -42971,6 +83838,74 @@
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
@@ -43093,12 +84028,12 @@
melpaBuild {
pname = "pubmed";
ename = "pubmed";
- version = "0.1";
+ version = "0.2.1";
src = fetchFromGitLab {
owner = "fvdbeek";
repo = "emacs-pubmed";
- rev = "195e5f6e0cb7b5c20723c2b6adc3ac19543cfcdc";
- sha256 = "0c37kk8lzhlywlg7gagk62c7k21zy6cg9lhz0jy5sab1icrdzps5";
+ rev = "67fbb6e8834feda85e8301adc5c17d9e38395d6a";
+ sha256 = "15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ee84560c15e7389e902fb4a4c548c08be231de82/recipes/pubmed";
@@ -43138,6 +84073,31 @@
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
@@ -43190,6 +84150,31 @@
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
@@ -43218,6 +84203,108 @@
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
@@ -43245,6 +84332,56 @@
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
@@ -43270,6 +84407,56 @@
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
@@ -43295,6 +84482,60 @@
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
@@ -43347,6 +84588,32 @@
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
@@ -43372,6 +84639,30 @@
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
@@ -43398,6 +84689,87 @@
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
@@ -43452,6 +84824,32 @@
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
@@ -43505,6 +84903,57 @@
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
@@ -43535,6 +84984,60 @@
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
@@ -43561,6 +85064,81 @@
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
@@ -43587,6 +85165,31 @@
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
@@ -43650,6 +85253,58 @@
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
@@ -43732,6 +85387,32 @@
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
@@ -43834,6 +85515,31 @@
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
@@ -43859,6 +85565,187 @@
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
@@ -43885,6 +85772,31 @@
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
@@ -43920,12 +85832,12 @@
melpaBuild {
pname = "quiz";
ename = "quiz";
- version = "1.4";
+ version = "1.5";
src = fetchFromGitHub {
owner = "davep";
repo = "quiz.el";
- rev = "69629937eaf994a51dad39c26355e1a56b9dcb95";
- sha256 = "06k1kv9ijg9gx8c5jid8ckbmjkviyzh59rygp9drbkpihwdwyfmj";
+ rev = "570bf53926d89282cdb9653bd5aa8fe968f92bbd";
+ sha256 = "1f752fsrk7z8q2dd40r46hzhhf1kyj0vid9g0vv5dkkzmabms59q";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/23d547c0d69d8f5d1e9983e3669a63dffaede2b3/recipes/quiz";
@@ -43993,6 +85905,59 @@
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
@@ -44018,6 +85983,31 @@
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
@@ -44122,6 +86112,83 @@
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
@@ -44226,6 +86293,33 @@
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
@@ -44251,6 +86345,107 @@
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
@@ -44284,12 +86479,12 @@
melpaBuild {
pname = "rdf-prefix";
ename = "rdf-prefix";
- version = "1.10";
+ version = "1.11";
src = fetchFromGitHub {
owner = "simenheg";
repo = "rdf-prefix";
- rev = "164136d05505275d42d1ca3a390f55fcc89694b8";
- sha256 = "18jp3yynnk2248mzwf8h62awfw8fh25m5ah5di0dg62xw56l9nig";
+ rev = "6daf675d96aa4a0bc78adc93560b791a77651b22";
+ sha256 = "0mxzpbmaw8qz6ykyhdhq0jvxsnbgsb98psjy0w99jpxkg09fas17";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f083bd629697038ea6391c7a4eeedc909a5231/recipes/rdf-prefix";
@@ -44302,6 +86497,56 @@
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
@@ -44328,6 +86573,85 @@
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
@@ -44365,12 +86689,12 @@
melpaBuild {
pname = "realgud";
ename = "realgud";
- version = "1.4.5";
+ version = "1.5.0";
src = fetchFromGitHub {
owner = "realgud";
repo = "realgud";
- rev = "09431a4561921bece36a6083b6e27ac4dc82432d";
- sha256 = "00dgdiiwnwynlyyh6pfhljrl363s8zd5ynbx9mhd2y8c3gmvfab0";
+ rev = "2d37b7d5a799363c7e8a69362d42d8a65b85f5cb";
+ sha256 = "0xnick9016wxrgi8v0lycvxhyz8l2k4nfvdpjc5yq476vwrjfzbz";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7a21be3673962d5706f12efa5179a5426bdce82b/recipes/realgud";
@@ -44389,6 +86713,173 @@
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
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-lldb";
+ ename = "realgud-lldb";
+ version = "1.0.2";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-lldb";
+ rev = "f2f77d6ddfa42430ead400eaf81c605c3a04dead";
+ sha256 = "0n8nagjhgyg2l0qymx4rjzigxnhhks86s8flpndsfyhzh98b8qbm";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e40b575cc22fa7b4773cf617862495e93565e4/recipes/realgud-lldb";
+ sha256 = "1l43h14a42cpgjcmbhk9vkk87z4ap9rdz7jrz8id666qxbza5xzg";
+ name = "recipe";
+ };
+ packageRequires = [ emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-lldb";
+ 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
+ , fetchurl
+ , lib
+ , load-relative
+ , melpaBuild
+ , realgud }:
+ melpaBuild {
+ pname = "realgud-trepan-ni";
+ ename = "realgud-trepan-ni";
+ version = "1.0.1";
+ src = fetchFromGitHub {
+ owner = "realgud";
+ repo = "realgud-trepan-ni";
+ rev = "ce008862ea33de0a9e6c06099b9ddff8f620f2e4";
+ sha256 = "14sd9d0jzr0iiy4hzssabp08wifbnb4hh6xs5b2v8ch348kcwpwv";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2464e03d11cd660c3c9c760e16b90911151cf184/recipes/realgud-trepan-ni";
+ sha256 = "1p7sn1swmdyyzaaa5xza70md4pl2p15swyh7y3fbmpp35nabv9zi";
+ name = "recipe";
+ };
+ packageRequires = [ cl-lib emacs load-relative realgud ];
+ meta = {
+ homepage = "https://melpa.org/#/realgud-trepan-ni";
+ license = lib.licenses.free;
+ };
+ }) {};
reason-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -44467,6 +86958,82 @@
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
@@ -44494,6 +87061,33 @@
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
@@ -44571,6 +87165,58 @@
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
@@ -44625,6 +87271,32 @@
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
@@ -44651,6 +87323,32 @@
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
@@ -44707,6 +87405,81 @@
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
@@ -44757,6 +87530,86 @@
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
@@ -44783,6 +87636,84 @@
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
@@ -44809,6 +87740,32 @@
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
@@ -44817,12 +87774,12 @@
melpaBuild {
pname = "repl-toggle";
ename = "repl-toggle";
- version = "0.5.0";
+ version = "0.6.1";
src = fetchFromGitHub {
owner = "tomterl";
repo = "repl-toggle";
- rev = "934f59478a5c5577795f9507e945d564be368510";
- sha256 = "13pgfqijfp0ad9h1rpcf0blppq3jv31wdgvpjndgi213vwrkk79j";
+ rev = "a36caac7649fbffbe30f7b06541c9efd723563fc";
+ sha256 = "12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/repl-toggle";
@@ -44835,6 +87792,57 @@
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
@@ -45025,6 +88033,31 @@
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
@@ -45077,6 +88110,58 @@
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
@@ -45129,6 +88214,32 @@
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
@@ -45154,6 +88265,84 @@
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
+ , helm
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "rfc-mode";
+ ename = "rfc-mode";
+ version = "1.1.1";
+ src = fetchFromGitHub {
+ owner = "galdor";
+ repo = "rfc-mode";
+ rev = "5cdf7172e307c0e23bb5342c61263d4439292ede";
+ sha256 = "091yqk257z19rs9mcy6b52ll87s85s7fbsd235kzqmacfcqyjsmi";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a61d769cf7c61619a594337fe8a12ccc6a6fd6e/recipes/rfc-mode";
+ sha256 = "0z7krcfdyr8hblz8dc7apqlpn6sj2zwrjw4wh86js8vf7fiv8svy";
+ name = "recipe";
+ };
+ packageRequires = [ emacs helm ];
+ meta = {
+ homepage = "https://melpa.org/#/rfc-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
rg = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -45183,6 +88372,31 @@
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
@@ -45217,12 +88431,12 @@
melpaBuild {
pname = "rich-minority";
ename = "rich-minority";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "rich-minority";
- rev = "333e4669f76a0fb68b433117d377711e418a525e";
- sha256 = "0ms42fnfis6y2h717cqhngzv7ysgf8340rsfm2i7rx2gbdynr1ic";
+ rev = "d33d2e357c8eb0b38624dbc51e8b953b08b0cc98";
+ sha256 = "1kn7c9qr9ykj68iqffzzmjsr6aazwac8cxb7j960sjb282rq0yyj";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority";
@@ -45245,12 +88459,12 @@
melpaBuild {
pname = "right-click-context";
ename = "right-click-context";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "right-click-context";
- rev = "173c86b4b3fc187d54bcd85b4d7df27a5ee24965";
- sha256 = "1paljjwr6sfl835m24vj2j4x3zdh3whwayj6dvyfarbhhcwbwphj";
+ rev = "db92245cc494c295afa7c23ef1e1d9f76c20a27e";
+ sha256 = "109l1qj3k87iz3g89j9xf5gdrflr63lagp1qz7cz1p1ji4lycb4k";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/f6963fc11d697b95ebbdaf7fe27c91a6229d08b6/recipes/right-click-context";
@@ -45289,6 +88503,32 @@
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
@@ -45318,6 +88558,31 @@
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
@@ -45343,6 +88608,32 @@
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
@@ -45370,6 +88661,32 @@
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
@@ -45379,12 +88696,12 @@
melpaBuild {
pname = "robe";
ename = "robe";
- version = "0.8.1";
+ version = "0.8.2";
src = fetchFromGitHub {
owner = "dgutov";
repo = "robe";
- rev = "22457d6855fb39b8aedf068556d0e2fbd2874d5b";
- sha256 = "0ll7ivxqnglfb0i70ly6qq2yfw9cyi3vq3lmj4s6h6c1c7rm3gcq";
+ rev = "1908afd42ce05fc8b8bbf3f38301680264b68d19";
+ sha256 = "0qw18wi54yg971n4wnjqkd8lqj5lbs9ra8bvmngif2bzhqlfdsbn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/673f920d02fe761bc080b73db7d37dbf5b6d86d8/recipes/robe";
@@ -45473,6 +88790,107 @@
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
@@ -45550,6 +88968,32 @@
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
@@ -45630,6 +89074,33 @@
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
@@ -45706,6 +89177,57 @@
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
@@ -45731,6 +89253,57 @@
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
@@ -45807,6 +89380,58 @@
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
@@ -45832,6 +89457,31 @@
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
@@ -45857,6 +89507,31 @@
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
@@ -45909,6 +89584,54 @@
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
@@ -45934,6 +89657,32 @@
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
@@ -45959,6 +89708,87 @@
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
@@ -46013,6 +89843,57 @@
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
@@ -46041,6 +89922,32 @@
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
@@ -46092,6 +89999,81 @@
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
@@ -46169,6 +90151,57 @@
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
@@ -46194,6 +90227,83 @@
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
@@ -46219,6 +90329,113 @@
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
@@ -46271,6 +90488,186 @@
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
@@ -46297,6 +90694,35 @@
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
@@ -46322,6 +90748,62 @@
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
@@ -46347,6 +90829,57 @@
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
@@ -46376,6 +90909,84 @@
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
@@ -46429,6 +91040,31 @@
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
@@ -46454,6 +91090,218 @@
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
+ , htmlize
+ , lib
+ , melpaBuild
+ , simple-httpd }:
+ melpaBuild {
+ pname = "seml-mode";
+ ename = "seml-mode";
+ version = "1.5.0";
+ src = fetchFromGitHub {
+ owner = "conao3";
+ repo = "seml-mode.el";
+ rev = "f62f7a9f5e18ef8f370444a1fce710770227b0f5";
+ sha256 = "037p2kiwkkbk921ik15jalcci0p87q3my9mxzyh6i0mnc6qsh4zf";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8b8d877ba3164bf20f7f0e56ea564b88f493e/recipes/seml-mode";
+ sha256 = "0fmfnglxm57mhynzdsgs14qaxsw3nf83qbz3adknv63qymbfhgbw";
+ name = "recipe";
+ };
+ packageRequires = [ emacs htmlize simple-httpd ];
+ meta = {
+ homepage = "https://melpa.org/#/seml-mode";
+ 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
@@ -46593,6 +91441,31 @@
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
@@ -46669,6 +91542,57 @@
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
@@ -46719,6 +91643,106 @@
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
@@ -46924,6 +91948,58 @@
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
@@ -46949,6 +92025,59 @@
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
@@ -47079,6 +92208,37 @@
license = lib.licenses.free;
};
}) {};
+ shroud = callPackage ({ bui
+ , dash
+ , dash-functional
+ , emacs
+ , epg ? null
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , s }:
+ melpaBuild {
+ pname = "shroud";
+ ename = "shroud";
+ version = "1.15.1";
+ src = fetchFromGitHub {
+ owner = "o-nly";
+ repo = "emacs-shroud";
+ rev = "a7706ee48ef8dc67e6240377c61946c73a7fae3a";
+ sha256 = "0wvm4lxqcc1p8v7rpqal3bnqgnpk1gs7v18i83f6cvi5d88jkgdg";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e4334a47a173e9cfb1e803d5781317da27702d7/recipes/shroud";
+ sha256 = "0s7gap41y2ncnlbj2cc6b2l7q7qc8psxpbznkc71y53ch1mc9isg";
+ name = "recipe";
+ };
+ packageRequires = [ bui dash dash-functional emacs epg s ];
+ meta = {
+ homepage = "https://melpa.org/#/shroud";
+ license = lib.licenses.free;
+ };
+ }) {};
shut-up = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -47114,12 +92274,12 @@
melpaBuild {
pname = "shx";
ename = "shx";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchFromGitHub {
owner = "riscy";
repo = "shx-for-emacs";
- rev = "a70f0cdc3c80b7b5b15d287d9b03e49f943bad57";
- sha256 = "0ihwiw9dxr6vln4dmg5dp75353ip9nc80hjfl1w3j0g3m8vhjbs2";
+ rev = "6b53896ad2d80f22454ae8b09dbaa7c352e4e37f";
+ sha256 = "1ps4by78ly7incc4s8767wbmcqfw9him3xdaif5akzg4qqymcayb";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx";
@@ -47132,24 +92292,73 @@
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
- , fetchFromGitHub
+ , fetchgit
, fetchurl
, lib
, melpaBuild }:
melpaBuild {
pname = "side-notes";
ename = "side-notes";
- version = "0.1.1";
- src = fetchFromGitHub {
- owner = "rnkn";
- repo = "side-notes";
- rev = "981ac308b9b5d58e2af20485377e693d2a6e15aa";
- sha256 = "1hjj6pkl83b9fldzf2bixdny85l5mn81a9kf25kyp0cc6apvwsqr";
+ version = "0.2.0";
+ src = fetchgit {
+ url = "https://git.sr.ht/~pwr/side-notes";
+ rev = "2319ee180a4a67175b9e95322cd30b3ac70a9bdf";
+ sha256 = "05xaj5lhxaf07frzcayx5ybz778sgx8bplg5i75x24b7miqdcjl2";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/24a71c493adfb79bcd5172d65aa0751e9a6ab556/recipes/side-notes";
- sha256 = "07hrrplgvp3fvl10fsmxifnim8wz34w7fhzzzkxpdj1zlwls6h83";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9829ece8343a2a4309b5f7f5e324f0a1145e1e83/recipes/side-notes";
+ sha256 = "1adan5v04awjxahmn2ndqj8fns5hkk4am5jnhic9y036qdcpd9mv";
name = "recipe";
};
packageRequires = [ emacs ];
@@ -47183,6 +92392,58 @@
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
@@ -47209,6 +92470,31 @@
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
@@ -47235,6 +92521,33 @@
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
@@ -47261,6 +92574,111 @@
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
@@ -47286,6 +92704,31 @@
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
@@ -47422,6 +92865,57 @@
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
@@ -47448,6 +92942,37 @@
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
@@ -47507,12 +93032,12 @@
melpaBuild {
pname = "slime";
ename = "slime";
- version = "2.23";
+ version = "2.24";
src = fetchFromGitHub {
owner = "slime";
repo = "slime";
- rev = "56e32da66840e3d03947da2fdf9730824cfc870a";
- sha256 = "05pgcf3sd4dwl40kfw00s3si8rz8rk9pis81jlxdi5w6qzmlg7v1";
+ rev = "c1f15e2bd02fabe7bb468b05fe311cd9a932f14f";
+ sha256 = "0w7j835p9riyd6n4znj3x255lwsrmy0lj51hpc7bhk0vdz2cv2qm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/47609a81b81330820f6ddf717400dc7fa06aaabf/recipes/slime";
@@ -47581,6 +93106,32 @@
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
@@ -47606,6 +93157,83 @@
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
@@ -47658,6 +93286,391 @@
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
@@ -47667,12 +93680,12 @@
melpaBuild {
pname = "smart-mode-line";
ename = "smart-mode-line";
- version = "2.12.0";
+ version = "2.13";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "9a81b51cd37fc5b6d47abfbb2b32f98f36a0fcfc";
- sha256 = "055w1pcr96bfgbmig6ll2sgcisw82rf9dh4n8dhnsl75p32g1rcn";
+ rev = "9a6d821e0c78361ab35c6e403fc582b76558a1a7";
+ sha256 = "164b697xm1rwcggv37dymhf3npbyh2bs59z8b6m5x35lb4c3lf8b";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line";
@@ -47685,6 +93698,33 @@
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
@@ -47695,7 +93735,7 @@
melpaBuild {
pname = "smart-mode-line-powerline-theme";
ename = "smart-mode-line-powerline-theme";
- version = "2.12.0";
+ version = "2.13";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
@@ -47713,6 +93753,60 @@
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
@@ -47739,6 +93833,56 @@
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
@@ -47764,6 +93908,32 @@
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
@@ -47841,6 +94011,31 @@
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
@@ -47866,6 +94061,32 @@
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
@@ -47917,6 +94138,56 @@
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
@@ -47992,6 +94263,81 @@
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
@@ -48020,6 +94366,32 @@
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
@@ -48074,6 +94446,31 @@
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
@@ -48130,6 +94527,82 @@
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
@@ -48139,12 +94612,12 @@
melpaBuild {
pname = "solaire-mode";
ename = "solaire-mode";
- version = "1.0.7";
+ version = "1.0.9";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-solaire-mode";
- rev = "d4e0babefc1d6bf157dcd1fe4da5758036c9d8ca";
- sha256 = "1s50nfmzn7ngpkg3v34j7zpjaap0jly1l7c17svhhv074wnjrcm0";
+ rev = "fffdcc46f3956f415496342de7e24488b6e751c5";
+ sha256 = "011m4r7s6i9lgjymh7jgq5jwwrpz4vmpvp3c8d4ix96v5hi04kzg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode";
@@ -48157,7 +94630,9 @@
license = lib.licenses.free;
};
}) {};
- solarized-theme = callPackage ({ dash
+ solarized-theme = callPackage ({ cl-lib ? null
+ , dash
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -48165,19 +94640,19 @@
melpaBuild {
pname = "solarized-theme";
ename = "solarized-theme";
- version = "1.2.2";
+ version = "1.3.0";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "solarized-emacs";
- rev = "210dbef0186f87048d50face41d1d374d6154b3a";
- sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3";
+ rev = "c42a932e5c467c1ce12c42276d35bfb8f666e96d";
+ sha256 = "1m6grd8ym4azxi09ya236vil9ylqalli99p9fafd5zmzq647l840";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme";
sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12";
name = "recipe";
};
- packageRequires = [ dash ];
+ packageRequires = [ cl-lib dash emacs ];
meta = {
homepage = "https://melpa.org/#/solarized-theme";
license = lib.licenses.free;
@@ -48233,6 +94708,87 @@
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
@@ -48341,6 +94897,76 @@
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
@@ -48396,6 +95022,83 @@
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
@@ -48455,6 +95158,82 @@
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
@@ -48533,6 +95312,31 @@
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
@@ -48559,6 +95363,32 @@
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
@@ -48586,6 +95416,31 @@
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
@@ -48611,6 +95466,63 @@
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
@@ -48637,6 +95549,31 @@
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
@@ -48663,6 +95600,85 @@
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
@@ -48689,6 +95705,31 @@
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
@@ -48716,6 +95757,60 @@
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
@@ -48792,6 +95887,31 @@
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
@@ -48946,6 +96066,31 @@
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
@@ -48973,6 +96118,31 @@
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
@@ -48981,12 +96151,12 @@
melpaBuild {
pname = "ssh-deploy";
ename = "ssh-deploy";
- version = "3.0";
+ version = "3.1";
src = fetchFromGitHub {
owner = "cjohansson";
repo = "emacs-ssh-deploy";
- rev = "5b263c17a0709bb7944983fd2ae50bf022c2d412";
- sha256 = "1z6dbq0fhynmanhzhpwgsf4bx6dkgqfajp6bz3gj5x2wspn866ks";
+ rev = "8c26f61fe5ee2a65aeedc944bf23c66d159ef933";
+ sha256 = "0zi8rlj4hmmhr4vcpa9666ddhqwdz7cnmhh80wrw21z9lsj8yccs";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy";
@@ -48999,6 +96169,61 @@
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
@@ -49051,6 +96276,58 @@
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
@@ -49076,6 +96353,32 @@
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
@@ -49101,6 +96404,83 @@
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
@@ -49126,6 +96506,135 @@
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
@@ -49253,6 +96762,55 @@
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
@@ -49304,6 +96862,31 @@
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
@@ -49329,6 +96912,31 @@
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
@@ -49406,6 +97014,57 @@
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
@@ -49437,6 +97096,110 @@
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
@@ -49488,6 +97251,56 @@
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
@@ -49514,6 +97327,32 @@
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
@@ -49542,6 +97381,57 @@
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
@@ -49580,12 +97470,12 @@
melpaBuild {
pname = "swift-mode";
ename = "swift-mode";
- version = "7.1.0";
+ version = "8.0.0";
src = fetchFromGitHub {
owner = "swift-emacs";
repo = "swift-mode";
- rev = "cde97e20a8c80075920f0e01ec76de1816aed114";
- sha256 = "1igk1d585f4bj7pw2ikfh843sfp0k80ibjkwvsjjpx272lz57qqk";
+ rev = "3b6bdad3870ecb87190cfec993bdae0545a8dbaa";
+ sha256 = "1x68fli13nd8mwjzc5d7sk2kkjrw22z9xl3srvzh7qqfm8pwcd2r";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/swift-mode";
@@ -49730,6 +97620,35 @@
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
@@ -49861,6 +97780,58 @@
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
@@ -49887,6 +97858,34 @@
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
@@ -49913,6 +97912,60 @@
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
@@ -49938,6 +97991,30 @@
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
@@ -50015,6 +98092,31 @@
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
@@ -50042,6 +98144,58 @@
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
@@ -50101,12 +98255,12 @@
melpaBuild {
pname = "tablist";
ename = "tablist";
- version = "0.70";
+ version = "1.0";
src = fetchFromGitHub {
owner = "politza";
repo = "tablist";
- rev = "ef38312867bc0268b1584dd890b1c420bb77ec11";
- sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns";
+ rev = "f6b495d09494784163c3e6ba75b771b71fe226a8";
+ sha256 = "0pzsdg0rm59daw34ppss79cg05z9wnr8nkmdcc48nkd0p69ip2yy";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc0c6c02d609fb22710560337bd577f4b1e0c8f/recipes/tablist";
@@ -50119,6 +98273,32 @@
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
@@ -50146,6 +98326,107 @@
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
@@ -50223,6 +98504,115 @@
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
@@ -50248,6 +98638,57 @@
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
@@ -50302,6 +98743,62 @@
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
@@ -50490,6 +98987,32 @@
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
@@ -50517,6 +99040,33 @@
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
@@ -50629,6 +99179,32 @@
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
@@ -50705,6 +99281,83 @@
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
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "texfrag";
+ ename = "texfrag";
+ version = "1.0.1";
+ src = fetchFromGitHub {
+ owner = "TobiasZawada";
+ repo = "texfrag";
+ rev = "270a8a4b5dadddc5b226d9a9c6c7868ea6bfe86f";
+ sha256 = "18ahbksxg1i3gvsayx2mhkjd1p75c60x5f8d9a3abm4h50gs5mvf";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/756649bbe2dc6233c66c3d128a8096be12231078/recipes/texfrag";
+ sha256 = "195vdpwqzypz35v8hc7ai9xpv1flrik60lgrk5m7xypnlp7mpr2x";
+ name = "recipe";
+ };
+ packageRequires = [ auctex emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/texfrag";
+ 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
@@ -50781,6 +99434,58 @@
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
@@ -50807,6 +99512,7 @@
};
}) {};
theme-looper = callPackage ({ cl-lib ? null
+ , emacs
, fetchFromGitHub
, fetchurl
, lib
@@ -50814,24 +99520,75 @@
melpaBuild {
pname = "theme-looper";
ename = "theme-looper";
- version = "2.2.0";
+ version = "2.4.0";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "theme-looper";
- rev = "4eea8ec048f1d6f6d875bf25690337ccc3ddf3dc";
- sha256 = "0lwkilvwx87xw1xx384pyz26agxd3rj11dabvb8bb4paw6c8wwr6";
+ rev = "388138a238fbab9b4bc5ada0300c9bc5ef63d3f1";
+ sha256 = "0gab7ph1d7z0bjflqrj1y1lb4nk4c32bkpi943px0m5s5cjm54jv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/theme-looper";
sha256 = "018bixcbzri3zsasy1pp2qfvgd679ylpi9gq26qv9iwlfhlrpwgf";
name = "recipe";
};
- packageRequires = [ cl-lib ];
+ packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://melpa.org/#/theme-looper";
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
@@ -50858,6 +99615,58 @@
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
@@ -50866,7 +99675,7 @@
melpaBuild {
pname = "thrift";
ename = "thrift";
- version = "2019.3.18.0";
+ version = "2019.6.3.0";
src = fetchFromGitHub {
owner = "facebook";
repo = "fbthrift";
@@ -50884,6 +99693,31 @@
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
@@ -50919,12 +99753,12 @@
melpaBuild {
pname = "tidal";
ename = "tidal";
- version = "1.0.10";
+ version = "1.0.13";
src = fetchFromGitHub {
owner = "tidalcycles";
repo = "Tidal";
- rev = "8605aacc1207ff822dfac4673332a337ac4f1cc2";
- sha256 = "103cy8iiv373yswfsjz0rr4zp3vm2l3vwyb65hvcm7w0x30bhi9r";
+ rev = "a6eed4908c8b78f0c98b9cb8cd290814afd1252b";
+ sha256 = "1hwcc713vrx5ypcxsidwp25mvcg24bk8fqy7k04w7np4hhc6szql";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/16a26659a16199b5bb066be6e5c4a40419bda018/recipes/tidal";
@@ -50967,6 +99801,87 @@
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
@@ -51051,6 +99966,242 @@
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
@@ -51076,6 +100227,310 @@
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
@@ -51084,12 +100539,12 @@
melpaBuild {
pname = "torus";
ename = "torus";
- version = "1.10";
+ version = "2.0";
src = fetchFromGitHub {
owner = "chimay";
repo = "torus";
- rev = "b6de553eb55cfd9c0b6dce800951bcd8aef5e70c";
- sha256 = "144azr3m8aj77fgvz4qnjzzhpxwz28lqjzh2k49z736iaax394gd";
+ rev = "222d5b155dd544cb158b2f84be8ad304b0c69df1";
+ sha256 = "164mip0cibs3c8c4khnbzs8f2pmj57ng5q7hspzv7wk8nvc6d39i";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/efc3b538861084cc13ff067a9258e55dc006b70d/recipes/torus";
@@ -51128,6 +100583,33 @@
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
@@ -51153,6 +100635,57 @@
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
@@ -51216,6 +100749,109 @@
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
@@ -51271,6 +100907,56 @@
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
@@ -51300,6 +100986,31 @@
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
@@ -51471,6 +101182,35 @@
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
@@ -51574,6 +101314,31 @@
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
@@ -51603,6 +101368,55 @@
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
@@ -51654,6 +101468,34 @@
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
@@ -51705,6 +101547,83 @@
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
@@ -51730,6 +101649,56 @@
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
@@ -51780,6 +101749,56 @@
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
@@ -51833,6 +101852,33 @@
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
@@ -51886,6 +101932,106 @@
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
@@ -51965,6 +102111,58 @@
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
@@ -51990,6 +102188,31 @@
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
@@ -52083,6 +102306,56 @@
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
@@ -52112,6 +102385,31 @@
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
@@ -52140,6 +102438,31 @@
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
@@ -52166,6 +102489,108 @@
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
@@ -52192,6 +102617,60 @@
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
@@ -52219,6 +102698,56 @@
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
@@ -52245,6 +102774,31 @@
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
@@ -52381,6 +102935,33 @@
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
@@ -52415,7 +102996,7 @@
melpaBuild {
pname = "utop";
ename = "utop";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchFromGitHub {
owner = "diml";
repo = "utop";
@@ -52433,6 +103014,56 @@
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
@@ -52486,6 +103117,83 @@
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
@@ -52514,6 +103222,107 @@
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
@@ -52522,12 +103331,12 @@
melpaBuild {
pname = "vc-hgcmd";
ename = "vc-hgcmd";
- version = "1.5.1";
+ version = "1.6.7";
src = fetchFromGitHub {
owner = "muffinmad";
repo = "emacs-vc-hgcmd";
- rev = "6379ef242cc2ac8366a6e6f1c588245577c76a3a";
- sha256 = "1zvggg9kpl6d2wrsjlrnjmb0dhmwmd9x6q2yj3g08bv6gsz3nfil";
+ rev = "e0f6e412c66bb8d57549d0d83dcdcab5b71db664";
+ sha256 = "0mcdyy3qcci0x78q06kilfxm14nzmwfzwg7n3njh93i2h1plr7ic";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/111142342ab81dcaa88a831ba620be499a334c3f/recipes/vc-hgcmd";
@@ -52567,6 +103376,31 @@
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
@@ -52781,6 +103615,112 @@
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
@@ -52807,6 +103747,31 @@
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
@@ -52836,6 +103801,108 @@
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
@@ -52890,6 +103957,56 @@
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
@@ -52942,6 +104059,31 @@
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
@@ -52976,12 +104118,12 @@
melpaBuild {
pname = "visual-regexp";
ename = "visual-regexp";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchFromGitHub {
owner = "benma";
repo = "visual-regexp.el";
- rev = "b3096c2d391ff4e28a2a4e8cd82efbf11071ea85";
- sha256 = "12zpmzwyp85dzsjpxd3279kpfi9yz3jwc1k9fnb3xv3pjiil5svg";
+ rev = "3e3ed81a3cbadef1f1f4cb16f9112a58641d70ca";
+ sha256 = "12p3rlhdphwmx1kxsjzcl2wj3i6qgpvw8iwhg1whs6yqgaxivixd";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/visual-regexp";
@@ -53045,6 +104187,32 @@
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
@@ -53095,6 +104263,57 @@
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
@@ -53149,6 +104368,32 @@
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
@@ -53174,6 +104419,31 @@
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
@@ -53201,6 +104471,162 @@
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
@@ -53229,6 +104655,108 @@
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
@@ -53304,6 +104832,31 @@
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
@@ -53331,6 +104884,33 @@
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
@@ -53416,12 +104996,12 @@
melpaBuild {
pname = "web-mode-edit-element";
ename = "web-mode-edit-element";
- version = "2.2";
+ version = "2.3";
src = fetchFromGitHub {
owner = "jtkDvlp";
repo = "web-mode-edit-element";
- rev = "30f0f697212a85a9b881549fc272fa7c96d3e703";
- sha256 = "1qnk4skzj6b47h8c2yg05hc7iv8y4102izlfc490307y264rv051";
+ rev = "ad5d7e4dc2420bdd00ce65d9adffbd38a5904afa";
+ sha256 = "143xh6xc7qd88hjjmcs9fd2zlgxl0hhgx5fplhbi9zxd2ihhz0dg";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/web-mode-edit-element";
@@ -53434,6 +105014,32 @@
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
@@ -53460,6 +105066,85 @@
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
@@ -53514,6 +105199,31 @@
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
@@ -53543,6 +105253,34 @@
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
@@ -53697,6 +105435,31 @@
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
@@ -53723,6 +105486,34 @@
license = lib.licenses.free;
};
}) {};
+ which-key-posframe = callPackage ({ emacs
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild
+ , posframe
+ , which-key }:
+ melpaBuild {
+ pname = "which-key-posframe";
+ ename = "which-key-posframe";
+ version = "0.2.0";
+ src = fetchFromGitHub {
+ owner = "yanghaoxie";
+ repo = "which-key-posframe";
+ rev = "75e73e187da78d823a5dc01c21e09e808e4fb938";
+ sha256 = "1ay6qnil7xmml95yiax191fs85mpjkpr0r9314zlf0mf7ip9hvpy";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56ab10dc99ea4f5b207f9874124aff414d859a17/recipes/which-key-posframe";
+ sha256 = "1vpdni3ascz2zw6k1xrnw2vqnq8p30mc7d8v81qdbjb58q27l8ll";
+ name = "recipe";
+ };
+ packageRequires = [ emacs posframe which-key ];
+ meta = {
+ homepage = "https://melpa.org/#/which-key-posframe";
+ license = lib.licenses.free;
+ };
+ }) {};
whitaker = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -53749,6 +105540,58 @@
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
@@ -53782,12 +105625,12 @@
melpaBuild {
pname = "whizzml-mode";
ename = "whizzml-mode";
- version = "0.3.0";
+ version = "0.31.4";
src = fetchFromGitHub {
owner = "whizzml";
repo = "whizzml-mode";
- rev = "eca56d0fd51c5f41ef3e84e363f66d717ea5b160";
- sha256 = "0rli8jc9fig32dx7icvmwmmdzkvar12323xy25vh296xzcyjrgba";
+ rev = "cb476ed0d6be52e0b8c38f5b643cbbfceda1b4ca";
+ sha256 = "1iklmzqb7200xniygd3gj3pa8d18z3pnabslsvd0k4qqvyvwnlxw";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/11f26b15c326c3b8541bac510579b32493916042/recipes/whizzml-mode";
@@ -53825,6 +105668,31 @@
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
@@ -53850,6 +105718,35 @@
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
@@ -53877,6 +105774,60 @@
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
@@ -53902,6 +105853,31 @@
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
@@ -53927,6 +105903,31 @@
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
@@ -53952,6 +105953,31 @@
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
@@ -54030,6 +106056,85 @@
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
@@ -54082,6 +106187,30 @@
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
@@ -54117,12 +106246,12 @@
melpaBuild {
pname = "with-editor";
ename = "with-editor";
- version = "2.8.1";
+ version = "2.8.3";
src = fetchFromGitHub {
owner = "magit";
repo = "with-editor";
- rev = "9dd9f176d96abc60365369de6d08c26c414ef1f3";
- sha256 = "16a71mld7knf5ppv4szlkfdq44cqi36jqmscn0fssffhg33xh8cs";
+ rev = "66bec91c859f305445b766394eb25248c1172426";
+ sha256 = "1z2h9casyw1b93ikq2mf9xixyvbl90zddf0s66lqfiyj2y376pq3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor";
@@ -54135,6 +106264,33 @@
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
@@ -54241,6 +106397,32 @@
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
@@ -54297,6 +106479,32 @@
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
@@ -54350,6 +106558,112 @@
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
+ , f
+ , fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "workgroups2";
+ ename = "workgroups2";
+ version = "1.2.0";
+ src = fetchFromGitHub {
+ owner = "pashinin";
+ repo = "workgroups2";
+ rev = "928d509157ec8a4a2e343b6115dff034c3243a7a";
+ sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f9cfb740cce05a6805d9a047e4c1380305da4df/recipes/workgroups2";
+ sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v";
+ name = "recipe";
+ };
+ packageRequires = [ anaphora cl-lib dash f ];
+ meta = {
+ homepage = "https://melpa.org/#/workgroups2";
+ 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
@@ -54376,6 +106690,35 @@
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
@@ -54531,6 +106874,111 @@
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
@@ -54558,6 +107006,265 @@
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
@@ -54583,6 +107290,35 @@
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
@@ -54660,6 +107396,31 @@
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
@@ -54710,6 +107471,82 @@
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
@@ -54717,12 +107554,12 @@
melpaBuild {
pname = "xquery-tool";
ename = "xquery-tool";
- version = "0.1.10";
+ version = "0.1.11";
src = fetchFromGitHub {
owner = "paddymcall";
repo = "xquery-tool.el";
- rev = "b81b5862e8541aca5231840eb176afad7ab55cf3";
- sha256 = "0dv3gl9djs9sbsg5mhdfnnv61ir9xccqijh7i2b82gq2j3lqhibm";
+ rev = "dc939a6d779e83fa06c4486e53dbeb3846c38c02";
+ sha256 = "10rp8wbvbab2z3rcyfsb2jxyj3fphq9g25wmai8c610z4s8rldlq";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2/recipes/xquery-tool";
@@ -54813,6 +107650,34 @@
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
@@ -54839,6 +107704,57 @@
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
@@ -54890,6 +107806,83 @@
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
@@ -54943,6 +107936,57 @@
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
@@ -54950,12 +107994,12 @@
melpaBuild {
pname = "yang-mode";
ename = "yang-mode";
- version = "0.9.8";
+ version = "0.9.9";
src = fetchFromGitHub {
owner = "mbj4668";
repo = "yang-mode";
- rev = "340aec635e359609b22f7e94df15af1af2b070f6";
- sha256 = "0795z6s71vlb709n5lpx2f9adfjndafg1h5860zvy1qc4m1054rz";
+ rev = "4b4ab4d4a79d37d6c31c6ea7cccbc425e0b1eded";
+ sha256 = "0sqp8vwlymwl2dp6bh1gf8725j1fd9sqj4qfgva09rmkq8fdivfm";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/bb42ab9b5f118baaf6766c478046552b686981a1/recipes/yang-mode";
@@ -55018,6 +108062,32 @@
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
@@ -55043,6 +108113,31 @@
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
@@ -55128,12 +108223,12 @@
melpaBuild {
pname = "yasnippet-snippets";
ename = "yasnippet-snippets";
- version = "0.10";
+ version = "0.11";
src = fetchFromGitHub {
owner = "AndreaCrotti";
repo = "yasnippet-snippets";
- rev = "827908d7cdc6e7c1504175b4d49f899f0e9ba945";
- sha256 = "017avn7i3650rnl7lppn8k465ni0xy8v3r750f00gm9hxkzrig0z";
+ rev = "69cc1c19c7d67780d9f0f910462b818e8c0a570e";
+ sha256 = "1j71vr52hndgqj00qsh4p2b5j0s9jcs174slk1p0745a5xac77p0";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/42490bbdac871bce302fbc9a0488ff7de354627e/recipes/yasnippet-snippets";
@@ -55173,6 +108268,30 @@
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
@@ -55198,6 +108317,31 @@
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
@@ -55267,6 +108411,33 @@
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
@@ -55295,6 +108466,31 @@
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
@@ -55302,12 +108498,12 @@
melpaBuild {
pname = "yoshi-theme";
ename = "yoshi-theme";
- version = "6.1.0";
+ version = "6.2.0";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "yoshi-theme";
- rev = "b140d3adce4e8e7ff7b0daaa6684bd7065e4819b";
- sha256 = "19a47780h0x1rdicr8i7356kvamkbkcwp31skdpp5cxgysvi3d9s";
+ rev = "70365870ff823b954aa85972217d8f116c45d939";
+ sha256 = "1myrvw0brl6cn3gljbplgxj3mr3mzicfymg7sir8hrk4d5g498yn";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme";
@@ -55349,6 +108545,58 @@
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
@@ -55376,6 +108624,31 @@
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
@@ -55401,6 +108674,82 @@
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
@@ -55455,6 +108804,57 @@
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
@@ -55464,12 +108864,12 @@
melpaBuild {
pname = "zmq";
ename = "zmq";
- version = "0.10.3";
+ version = "0.10.9";
src = fetchFromGitHub {
owner = "dzop";
repo = "emacs-zmq";
- rev = "12661cbc1acee8506d88b4853214a8a3716db240";
- sha256 = "1rnddd67wm2g7qm06qhn8h3dakhv5lcf2dqhdhf0ian1lw5z0yvw";
+ rev = "eb96b39696229424efc2a5ffdaf59c55f1ae931d";
+ sha256 = "1ddaf8n1gndkyb46ivchychgyc5cqd5hf56325z3rf412xi4zrk1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/72f4dcc2723de826bf1af7235ac6d9119a243c63/recipes/zmq";
@@ -55482,6 +108882,57 @@
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
@@ -55536,6 +108987,85 @@
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
@@ -55544,12 +109074,12 @@
melpaBuild {
pname = "zoom";
ename = "zoom";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "cyrus-and";
repo = "zoom";
- rev = "85deb722abb89f1758a24969680fc13b51344cb2";
- sha256 = "1a7dlfi1w0rh6iphvflip3798xg7sac916qwjmqzz4inw9wdh3ga";
+ rev = "578295532fb1c4ad2a2e95894e65cce02f812b54";
+ sha256 = "1qcni15mps7w9waail21x0fy2rrd5y8cm4yzi8rs2ar4vqrjbyyp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe094c99756ad29eda9bc51f31bb70c4ddc4131/recipes/zoom";
@@ -55614,6 +109144,32 @@
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
@@ -55665,6 +109221,162 @@
license = lib.licenses.free;
};
}) {};
+ zoutline = callPackage ({ fetchFromGitHub
+ , fetchurl
+ , lib
+ , melpaBuild }:
+ melpaBuild {
+ pname = "zoutline";
+ ename = "zoutline";
+ version = "0.2.0";
+ src = fetchFromGitHub {
+ owner = "abo-abo";
+ repo = "zoutline";
+ rev = "63756846f8540b6faf89d885438186e4fe1c7d8a";
+ sha256 = "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a26341f491145938aee9b531cd861200bfa2f6d/recipes/zoutline";
+ sha256 = "1yyww84b58ymbx0w1gkgd0csr0cwlghdmnxk0jbzwc45g9g42k1m";
+ name = "recipe";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/zoutline";
+ 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 49486df9a3f..f108dfd17b8 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -207,6 +207,10 @@ self:
window-numbering = markBroken super.window-numbering;
};
- melpaStablePackages = super // overrides;
+ melpaStablePackages =
+ removeAttrs (super // overrides)
+ [
+ "lenlen-theme" # missing dependency: color-theme-solarized
+ ];
in
melpaStablePackages // { inherit melpaStablePackages; }
diff --git a/pkgs/applications/misc/gallery-dl/default.nix b/pkgs/applications/misc/gallery-dl/default.nix
index 742b535b33d..eba26695b91 100644
--- a/pkgs/applications/misc/gallery-dl/default.nix
+++ b/pkgs/applications/misc/gallery-dl/default.nix
@@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec {
pname = "gallery_dl";
- version = "1.8.4";
+ version = "1.8.5";
src = python3Packages.fetchPypi {
inherit pname version;
- sha256 = "01df9aph7qr2yxy0ckpkr5f6yscs29raqs2f4xxg7xn5zaimjhan";
+ sha256 = "ee5b14e83080b6390f9bf8d9bbfab03f628aebe863efd16a4b2f8536b149cc4f";
};
doCheck = false;
diff --git a/pkgs/applications/misc/jgmenu/default.nix b/pkgs/applications/misc/jgmenu/default.nix
index b868808ec3d..6ba0bed7847 100644
--- a/pkgs/applications/misc/jgmenu/default.nix
+++ b/pkgs/applications/misc/jgmenu/default.nix
@@ -1,18 +1,19 @@
-{ stdenv, fetchFromGitHub, pkgconfig, python3Packages, pango, librsvg, libxml2, menu-cache, xorg }:
+{ stdenv, fetchFromGitHub, pkgconfig, python3Packages, pango, librsvg, libxml2, menu-cache, xorg, makeWrapper }:
stdenv.mkDerivation rec {
- name = "jgmenu-${version}";
- version = "1.1";
+ pname = "jgmenu";
+ version = "3.0";
src = fetchFromGitHub {
owner = "johanmalm";
- repo = "jgmenu";
+ repo = pname;
rev = "v${version}";
- sha256 = "0hnxzy5mm5z6r9gaimfsf7kbpr23khck2fhh3j8bk2lkp53420fz";
+ sha256 = "01r92nili4v4pdmw4g5z0rsg1q7m7q3a5hjc47mnchgibdiissvl";
};
nativeBuildInputs = [
pkgconfig
+ makeWrapper
python3Packages.wrapPython
];
@@ -22,12 +23,17 @@ stdenv.mkDerivation rec {
libxml2
menu-cache
xorg.libXinerama
+ xorg.libXrandr
+ python3Packages.python
];
- makeFlags = [ "prefix=$(out)" ];
+ makeFlags = [ "prefix=${placeholder "out"}" ];
postFixup = ''
wrapPythonProgramsIn "$out/lib/jgmenu"
+ for f in $out/bin/jgmenu{,_run}; do
+ wrapProgram $f --prefix PATH : $out/bin
+ done
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
index 8891c59adb7..5401b66f27c 100644
--- a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
+++ b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
@@ -107,7 +107,7 @@ let
"https://dist.torproject.org/torbrowser/${version}/tor-browser-linux32-${version}_${lang}.tar.xz"
"https://github.com/TheTorProject/gettorbrowser/releases/download/v${version}/tor-browser-linux32-${version}_${lang}.tar.xz"
];
- sha256 = "0lgxwb9hll29sk7rpnraw9gfz7f9sb81gjsbxdnmm34y1vrabjv7";
+ sha256 = "160k5qdys6zy5cpsad2rm24ghfc2bd9b9gj3l0159di6hg21rk9k";
};
};
in
diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix
index 49ac1d26dda..6bac5bd5836 100644
--- a/pkgs/applications/networking/ftp/filezilla/default.nix
+++ b/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -1,17 +1,18 @@
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
-let version = "3.31.0"; in
+let version = "3.42.1"; in
stdenv.mkDerivation {
name = "filezilla-${version}";
src = fetchurl {
- url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
- sha256 = "1rfysb8dil35a7bzj2kw0mzzkys39d7yn6ipsbk8l6rkwfvnii8l";
+ url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
+ sha256 = "083ycsycwy1szhp3mzf998wsqa74hmdxdsy07x6k81vp2cxjxijg";
};
configureFlags = [
"--disable-manualupdatecheck"
+ "--disable-autoupdatecheck"
];
nativeBuildInputs = [ pkgconfig ];
@@ -19,6 +20,8 @@ stdenv.mkDerivation {
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
pugixml libfilezilla nettle ];
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
homepage = https://filezilla-project.org/;
description = "Graphical FTP, FTPS and SFTP client";
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
index b34fde7b7c1..282a9c806dc 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
@@ -1,585 +1,585 @@
{
- version = "60.6.0";
+ version = "60.7.0";
sources = [
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ar/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ar/thunderbird-60.7.0.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "ba14ed80e0b18cc3b40a1bf1810eb67a246f6e995d527e625432eb24dce46bde85dd0dbcac5590d74b8bbb7be900f266b72055349f9b0ea6839fb8d5779aa54d";
+ sha512 = "07f3c9310e46fb43bab84c892c06aae11a33f0b7cf14730a92c9292d3e51bce9a1d37707ee819c8ba9fb8b9e78bf2089772684405a8276ac32676b2585c7bc32";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ast/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ast/thunderbird-60.7.0.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "b6ab87d344c3e806a2316022a6c8632dcd9548c745766e136ca9aa70f54fe744587849372fc7426173a91996ff4709aee85f8e5de2565add3bbac58d370e7a96";
+ sha512 = "75967b7e98bd7d3b1d1ddb01aa5950d3d7bda77001bc0d8eb5d30a9bf617eb4fd36d6870c774943c41de9ba784f969fa0ffcfe5787331f3b721a1adbabee4e27";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/be/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/be/thunderbird-60.7.0.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "2d5f88efb2f6e3be552cb503bfe184a3ad6b395da3139c6c97585f490d9a02c5ce391c0f6b3b1be0505b63f0b8af70da9eca8820b5baefc3dc043a60abb47d5a";
+ sha512 = "78d8a8052bdebce1680d7a68ad3c0a0f8f4e3a0aa789ebc3874e58aa4eaa177feace8874b0bf7ad9d846673fb43e2356e7deefaa0a93dcf7db9c8d393ffc4508";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/bg/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/bg/thunderbird-60.7.0.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "16b7b8d54e200b9156a346a0e4b80cb5c91a0297222a3f4a227770344d6453fea679d7c8a512eb9d879abe262ce34c2dab654cbe60aab13d0cc7919757dcae8d";
+ sha512 = "228182664420439f0847746db29764a50f85607589600d48e79c4f9ba63912750ebda16c24c31a8b8f11dd0f02c0f493d6c2ca3a56dfc2cd8f2c0621b809092d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/br/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/br/thunderbird-60.7.0.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "d20854f75f09f95489a1d647bbdeed9062a553dcede68f48672d0a0a82001e283a7d24162a6110ce3efa1a1bdd846ca7fe036c37a20f63bf8dcd54d80a767084";
+ sha512 = "7eed1bee8424f0d6cb26636fffe16da398406902e791c3e346c74a405feff23f158df8a0790064022977469605001aac2ea484e93e803134f8c063da40e9b2ae";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ca/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ca/thunderbird-60.7.0.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "8477742f367c2e4206ba61afcef372d39163aeba5e781ea9a089b0d3cf9ef44be8ce6bd3417490616a51aff3152a52eb3599b2acf66e0186e696c9df29b9732b";
+ sha512 = "e9071b7f54db240cfdf91b64aec9170a94b2b753d7b7b04dedfa1335f41829db09e6623d6b44186d552b85aedbfe57cacacd7bf68605a488ed8a5d667769c3d2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/cs/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/cs/thunderbird-60.7.0.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "b434e8763a93df511dcc9c032d11c0a26c7583f7ce01980be63ea453f8d503e703cddca5e5a67db619cb1b9690d0256c91eec8166fff30733186e429d3c513a8";
+ sha512 = "2366449d58ab72cc59b0abd5bd4c279e3d1e95668b834b4d49a606338206197434f78ec911b6c69301916754f813c137a89ae7fabf1bbfba1273bf4ead1ba1a3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/cy/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/cy/thunderbird-60.7.0.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "71a6a2642dfce4505ed3b6b551ffdd5c469f1261191b73d3bd09bdf98788297536b3b94dd52327d263d4b1256080ff0317d8e10e09b53871ab805b426892e9a0";
+ sha512 = "dcc268a8bb5fe9be6a3ddcb4cd25cf341db58e9ad2837d15ec949dc737edfeda3fdb17368237b58a33ffe1b41ede2496ad06c1fee46f9d59468138e3bd2292d1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/da/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/da/thunderbird-60.7.0.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "e24c19e5caafd4b4c5081acf700fb175e07c1702da0af111122cf793e4791d38c49902e1b9574ab9606482c539677e6caad2b9f8f655ac0fb24f1b0c8454c456";
+ sha512 = "1d027329c79b9fe335fa9243e6aefd9f5a8f15e8280db3ab449478dd435bdec6d4020c03e22c124a3505aca4908bf35f8b3203a637a508b747f83e4d0fb24de6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/de/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/de/thunderbird-60.7.0.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "e9ec916a00bfd50745c95ed42976eeb0b9cc314165b6401e24e1433a68fa5591c3020397a0c35566072784e423b42132d4e55dc307a47d34c693d5fe9e3e6380";
+ sha512 = "51436c4e59dbda6eff921800f65d9181983e3fdc86def4f0d358ff616f646a58c84581376e37a4db180a80535d71da6c75be790419e66fb6b9c949a52f8973c9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/dsb/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/dsb/thunderbird-60.7.0.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "4fd72e0ba6982c0aeba4911a626aa7dea2d6678502aec9523efb5e89b613b20b471d50a2667df000541279ff961fc3323ebaa16d3482c2bebcaa33ec849a05d3";
+ sha512 = "6316491fc7cc1160456adf586679939ce52f12321b260c137808e7ea4d52ce4251e373d65e8e9bb0462282735a45e557c2e800a3fc0cff7b91a0dbee4b8ecd96";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/el/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/el/thunderbird-60.7.0.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "bd86c6855ce42bf52ca6822e6fd3cfd7e09c9fd2577407c666b46d84afcf43655f30dc0e3546ae41b84eb5ca7e681072fae90a08de9dd017c3594dea4e5b9bb8";
+ sha512 = "1185db88183bf22d788639ae8b57ae348a54f2ab20562d9f9ad3990ca64d989f7009387a02ebe5bc8121ce2aa8bb5f6eb2d1ff5ecf8cd7bc76af14f02c8fd365";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/en-GB/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/en-GB/thunderbird-60.7.0.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "47009db4f18cad43a9d4ba20a4edbfbb07cc5222cb65121dfe45eb3c9120fd18277d5601309f9f3f21eebe10fd70201a9d15815fd35ef6f9d3f95360d939a0ec";
+ sha512 = "085d55a9333d147829f15b7452b59dee2743999270b79f56957ab813d10a8e36242215eedb8db34a2fa8b213c58b4c8bb503c7251dc144fa4ea20c5417dbedad";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/en-US/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/en-US/thunderbird-60.7.0.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "86bfb05041e347430c424652f8fcb102aa44c0bb68bf1b7a55ce888fcefa2ac08f55bb4bcbe7a558aaf3214ae694b97a6805f14de2ce575968fa2a1988e281ba";
+ sha512 = "0bf5bbbaf76c1dd304eda6ad175f3fdc4fbe9f56ed11bac4b6855f13c2cbd5ddd635c364d8f9660542a20d4bf8d3a8b18b4398280d15ad47afc4fa88d321d5bb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/es-AR/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/es-AR/thunderbird-60.7.0.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "87a5caeb7d8f8846c52b9a7344260e480efce156239559a890bf5e167939cd35e2223ef4ad2429b196a87ca164b02eb7df3dd03ed1f52f95bf30d75afec40fd8";
+ sha512 = "e1212f10b58d13d3376f72df61e1609fba269adc698e55bc3f19624a5004286b417d3181708dc80806a02d910167cd4f63e5d4adb3b2f7cdedcfdd140ed482d4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/es-ES/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/es-ES/thunderbird-60.7.0.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "ec6a17263d696b2fa4195349fd3badaf7ac7dbdf93ee7247a77d27aa13daf5de06db8c2df3449b06e6d28fc032e9c4eeb897be8b1a798e9fb7b68f3c8509d6d8";
+ sha512 = "136859c06b23f07fad831925f3a990b1bbfe955083f96b767482d496bb054b63d31eaab3361e5edc1d226a1a38296599cdaa1980839b3d0feadfb93c511aa10b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/et/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/et/thunderbird-60.7.0.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "d4591fdc97c5c1654f59116670e8516c12b53311e6f76f13711c04c86cfbf4cbd893a2f5f657b27fc44ad9919e3c0b5192ae98b26281ef4df6863fc522d50a7b";
+ sha512 = "4562561e5a317ce632e9323096c4ba83c9ac5183e6e42cbcd9475965166392390ece9a370f6f9fe46d3d19fd0d65596bee6519e4060b49bdcac01996c47e0a18";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/eu/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/eu/thunderbird-60.7.0.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "316b4d9d515b23476d29c0136c9981d281f7a3628aacd18f912640a2b6e1d5b53d66d42e9300af6b2cb78e4ada7458d0002c3d4a5ac7f5129db3dd66f4358341";
+ sha512 = "4601b91b694f76654ea5ea3c932b3bb56f99096144a2c4e6dd5ab369ba0c9bf30044fe7490d67f50c9308b1223cd887e22f8cbbd1f35ba3e769d2b2e1e230b67";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/fi/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/fi/thunderbird-60.7.0.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "944742e4331c7ccbc27d887d9d5702ced9807d743d57e8a14b18f4dd6b2148ed24b295eb498c09d1d54f2f1110abfd9e2acbad83a882189d0d7e5403dbe650b4";
+ sha512 = "39f949f4d71f8ad64ccaaef6b61797f1b8da5fd2e3bd80ec6110bc994806413e4617ba375c973a47819d2c8ae774f01941c5fc9698585b276d805c525bd91abf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/fr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/fr/thunderbird-60.7.0.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "1dfeaeb5e6985ebd820188721377589ebf4b993337a4231f6d036ae05173e8fb33c17bae76a3982e34a98da934d584d0efec4e01d6045b24345ea66299ecfe19";
+ sha512 = "ab281a68685555afbcfad63f6ea55aee413696b50cfba1563de7767a824fc22d00e39dcae04b6383e3b7da57ae23ffb09d49739ac78c69a59d2becd9ce22dd23";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/fy-NL/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/fy-NL/thunderbird-60.7.0.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "6e61fc74b45e75170157806c8f358b5236e5de79e1d07db4f7834bebf2b9822d90377334ec1f2cf44a838c52c7135711b5a7036a0336813fe79c7dc3aa43e25e";
+ sha512 = "042ea959bf071f7f5b62ffdccd13739c4c0defdf9de3bfd19bec695e89b18aca35f4bbb4938de424834309dbb2a0d3f45c32461b6e517f7c9c4740f38f2d02b7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ga-IE/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ga-IE/thunderbird-60.7.0.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "7de19973a7e9770cfdd9ff944e9bea8e6755a81e2fd41ce27ff0d16bfe948534294c18f2f7ca05092aa574bea6fadd5a90bb08ca6472c27e7b0cdc6c15d25341";
+ sha512 = "1da90daff6d3eb7473dd44e7878cfacc807e495a0028802b04adf61992134179cf7afdc8c1c3fb9336120639efed2969cf197cc29a41591598b486aec20b9a9b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/gd/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/gd/thunderbird-60.7.0.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "1d5309b6eb47b16b49142ba18de96b285fc0f91a7eb3be5cac576683da37143c1e91318dff4f039119668679acf3c2643bdde9a26788f0bb240cebaa5f907389";
+ sha512 = "21197c08e9f27bcc30b4f579c1005caf458f0e1cbcc564ca270885c215aac18e17eae485dd5d2ab756013fea24af36b919e65d100d88db43570ab690be7e2679";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/gl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/gl/thunderbird-60.7.0.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "ecb09d7d8e6b5705d4c71d306a1556a74f78617520e59f041e3b63a0116f0472717c5f3bb055fda3c5c9fd72b198d997704292f64bc60349ec29efe057c46d52";
+ sha512 = "12db9c89338c80f063408167b2d91a8361236b220cdddec141d7dcf6518f8ef39105c32dada76f3a326d09e1dca7e4ea134827154546840cbfb8ac18e9bec351";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/he/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/he/thunderbird-60.7.0.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "7ced9d95c40376ee1334e5c5cb2bb9fd6e5cefcc26dc134fb5ef71bc20b6476b263ee742d3e0634517ca399c61c776bd7347b58c2c9bd0c395949756d1d0f5af";
+ sha512 = "be5eef2e90af44623554359960ae0f9da3c54484643ab8ceaa72c0b000c7cb17693be8e865a6964ad3b356906c1872fc2315a601531faf16ebd7c356ac3f8110";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/hr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/hr/thunderbird-60.7.0.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "c9cb6cd5b3d7f1091f55b74af73825d2d0e8b763ffc102a1d49e58b2ac9e6fe2fdd81c1bcf7effd53d86c1ba8f662e3ae0b413ef80bafcb6e2ae64d34c7f3311";
+ sha512 = "48f8d55811632b650a1be62125ba3b56b144e422c0b410a2ad5ee4ff1a779c0a6c8d6f8d6c754bfa907a9c7aa22f0a5484cbc624247db89ef7ffe624d9a939cc";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/hsb/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/hsb/thunderbird-60.7.0.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "e4f8092eb72e8311459a9232dc55342c2ff61b232d0b3a1be04acde78d7c06f14108f68378de200cadbe58125cddf46fddd421f76ac0d046e1a796fc5277278e";
+ sha512 = "bd38e36a1de618e692298ebd0d8593bddd2f80d36420af091a44974187042d47eb5cb8d1ea908855e5ce832b305e156470f0ad13ab6cf60acb066a4e3fa209d5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/hu/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/hu/thunderbird-60.7.0.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "ba1ca73de9b3b0137e38c10bbf29cd28310a7e2e58804de75247da098401f4b609d414e55a25b9646c16dae353db9d6fd193e437e42b7659d66f0ec9117e8629";
+ sha512 = "40e992503afd3c10fccda0b2892194e97df0f165b808d953293cc6c5d9c472af45dcf4aacf65eab9bcd052282d46bb1fd6d108f057c7ce8e5e22b902baa56d53";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/hy-AM/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/hy-AM/thunderbird-60.7.0.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "d5fbb20b9a75be427f1fb2a3c3674397b04793469dc3f493ec9bbf631e83a52573700540832cfe7faf71c16908ee0bc7bcd84b3cbd6e10fde950d477b27bc6dc";
+ sha512 = "18213aaf5bf8d761209c325305722bbbf8355c09856ce95d6b613c51cf824d6c53881355391ccca8cdf6f02e8f1e0c486219e1eb832124d313cc3115adea4927";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/id/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/id/thunderbird-60.7.0.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "35b1d1db2dc6c38b8d2fce2652857d9251e287acad125ab19c5e20487ac5ee6d4ad01d8f6d6cfc1ed9618cb8a47666d9c64e725b2d1f11894741e8cf99a887f8";
+ sha512 = "31790666d7cbf9571d32f6d372a3026fc7295004c14282557bf809ac1601242caac511d20ee8bdd04d8d63f864c300179b6d1a79cb8cc3aabfefb8088c88768c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/is/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/is/thunderbird-60.7.0.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "548170e5b1c2d7c09d4792f012064e5bbb201236768ba92fa318821b83101a395f3a4cd06560db89c23561eda20078921902aaa9b7ecbb201c356149af3d55cc";
+ sha512 = "a790b49f9bc055ab302e369bf69f8353354d1ee1ae50a8666a1c6ebd48d500275cfeef16eadc0330710865dc3b5e4ec8577c973b80e581f03a2dd2f05f299663";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/it/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/it/thunderbird-60.7.0.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "026fc8d2b61eaff1f34ce7726923697ba5c7563b65fbb9bbd700e88998d198eee595348cc47135c5dc8589201fcf0d75141acd5d1e49980ccc5c544b545bb424";
+ sha512 = "1ba1218036387f697420000b80ed33276a0535e3914ad10d993ec0f2aa9efd312b13027a77816eba129c59303d2dbe80e48b523313d3f1dfced8dd20f23e3f95";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ja/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ja/thunderbird-60.7.0.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "deb6e23d8c3c700d7de3f433862040ae5db610012cfd4a8faaf239a6429662d625d8a40c583f22797e34afbeec7dd6888a1558155e0878f4a84ea71694cc97ef";
+ sha512 = "a627ec7cac46179cb77e9b234de657cc6817a05adb55632b52a5d316be0fbee6a7475bc06a06b691650088376de4da1e7c2754de0cea3c7d21d47a4298c1f6be";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/kab/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/kab/thunderbird-60.7.0.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "e6c1dba878c8bfcd4031123f0578512b0cfad675ddfd89859d5ea25b2c112195f788cb1d3e0deec12ca1f052c2c0bfdeda2527402cf0d51f54e781029a6e3b47";
+ sha512 = "51282592eefdfc6249d48409c4210ded53306474c238785cf1fed7e55681b165e99493c5d3e4c1261c4bdeb5071f4a7d6fc32f0f243c41c749e67859449e6f55";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/kk/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/kk/thunderbird-60.7.0.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "70dd97b4d5db05463deff785fbd9dbdb649c00ec79d8f1cf009ab54961efafc45f12da654367b0df58211a8fe57597cba7743b7557dc121bbf1d838aa692809a";
+ sha512 = "1ab662dc20156e6f1d90a73528e904b9361eea1d89f3b55ef67541c29f4620244b1e3dd61c795663f109452a98aebf436af4a8aa376b6a751f9a046d0e9d5ab2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ko/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ko/thunderbird-60.7.0.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "8faf4d44bb882107805c663462170e96593f10e7218fa3a1e244937ee3965901d712c89edf9cbc4fefba85c91662c1a7e2811cf1bc3390377cd8ea3f3c8e29e0";
+ sha512 = "b3135bf41e32d4a431bb385b5e473c94810a65c8703810352a32bc6ae2665427636cb70c4c0c29bd3c85d68a89af1d9c5edef290d35c8b4f0adcd196d4e97084";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/lt/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/lt/thunderbird-60.7.0.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "604b8283cce3cddd90ae65be0d32ce7051bbe360fb772e47be60fa3312330d38b46d240b9e61eed3134fadef90aca9ac930ae6512dfdc1343104edff928be54c";
+ sha512 = "acf6fe072deeb711480c571506ea96b96bbb2c0fdf85ed66bf03a800e1305682cb34daa2e44530c1c57ef59664e13c01584816453449486f595e38610956c15c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ms/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ms/thunderbird-60.7.0.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "b4af3085260ece6e30b482e9e8335a75298335b0b551a8219bbc04521d41d0088d483134df8801a529934320ab5d51b99b388177b9432b7fdcbd7391ac11b22d";
+ sha512 = "8a74dfba38c2228e00ba3503fa6a05a0b4e4aba68c034e0711bc8f68c00efdeec816e0de6e6aea325427f8b6f790eb2b157df795a0d67e800beacd6fa572fe38";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/nb-NO/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/nb-NO/thunderbird-60.7.0.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "75022e5524379f4683d6e85bfc057480dcc003d421ec256ade11ba9f4eb60b74c65a7131f07987cecd5a13d8e61dbf2c71446e4c2cbfd9efa65a1c86939e82aa";
+ sha512 = "49116d9ac9f9fe322b56a5908e1727c53ca5351f60ba9b7ec1f453580e0be85efa84cc467e901aa269fe266d39860b313173a36f08ac6c6420032b3fec11a823";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/nl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/nl/thunderbird-60.7.0.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "301dfe0a9ce8743703c1f4968bb9bd7b9881a7b70ce1760c12e9a9b2ffe386e8c85406a2b3121981676e4ba2f9ae5a32782857a168965f1fd93530cb22dc3ddd";
+ sha512 = "091e81383130fab108de72f71794fbf9eeb08106367f64c5b0fd9ba48dd2363890c2dbfe2c0aec4d44feaad6b55cdaad8844c4291cb1d9d12f2ba0341c259ad9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/nn-NO/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/nn-NO/thunderbird-60.7.0.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "67704f6dc56fb2d396cd5154d32648464cbf331890dfbe30c6870f63d8f26d8f46322c2b2c40cec86fdbd7b93eeacae2551b0e699428749c89acb715bf8d00b2";
+ sha512 = "1384adc5a57fb5d4fb4fff055c94b81fa5430872f687ad339a76120604e4898cc9621ba21f366498f79323e8f3b7b0d1d2c44bcb35894019ee4797fe4b563976";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/pl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/pl/thunderbird-60.7.0.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "6477cf8274f38d3922edf51e0a419936d2ac494906c06fcf78c99ae95847c2fd4530e03d1574f7ba4b5d1221e98a71bb1a7e3810a1ebcd72c4e412f0e85c3c31";
+ sha512 = "088e52c4fed03ccd663f6942c41203adf33e39272f3b6be5e4884e417586620f4eb732d861dfd6325ca63ee11c2e7412bf8eae1a7eec841237fd966f0422d377";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/pt-BR/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/pt-BR/thunderbird-60.7.0.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "775ccbd6e8adda7318a5ff9d364d6d8b3d8af39208a349f61123550a149c728f7d6248c27b3b4561c8445c1c7c53300579f073b47ba31a52b68a8570515e6329";
+ sha512 = "d0a45e4b826d19d25f703dbf37a718dadb1fd2ec61e25457e306e08ba1f066fdbc48d2032b395c62ebde82280db0e9c519157e8e4b12bc28bf5cf49087760f0a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/pt-PT/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/pt-PT/thunderbird-60.7.0.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "057a2b690dfd529be26ddc225f6f760190315721ef69ab0d9974788b7c00617704af82ec56cbb502a3854945b624896ceb800ba1a31080fe9984fe12af4d301f";
+ sha512 = "7a4f314d5dbd09ba3b7908d57dfb4719ec1a63ff5ff7edd0cb00e1f0bd96009c2870b0c18ca973210c57cce7d8fc76d4d8dc54b7235652e8f33f468dd58b5026";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/rm/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/rm/thunderbird-60.7.0.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "10c4edf026d5b924d5105201179f8f5f6ecf5917e99efb60c663325ef98e5ba63f965954c93e3962af454111656687abd2be65e0c552617f8fc7eb6ee3b339bf";
+ sha512 = "239c248c11b3f3a8c1d95ea9e3c973d965b2dfd8fd0790ee5aa85947db1295374e56b9cd1379e54e139fbac7b8c51e201b592d7b371ed72181011ae78f49b275";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ro/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ro/thunderbird-60.7.0.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "d6a4fe46346b6699d570e316c7e97b530100923771d4ab76878dbea959dcd1c34e694c3a968eb786d19be96e0b7757952d47a87bc52f99d078eefc9a2483dd7f";
+ sha512 = "5be62fbf84bd4e5f4eb24edd620269288aa09e0a65836c0dfdaee28d90a68375dab44d1e5c988704fc82efeab6d060e343b623b01de28e967b91390c54aedb91";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/ru/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/ru/thunderbird-60.7.0.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "14b79c2751306b7e66cc3049c0338c16042c60fd707275f25775692b09c28fbd30b46886fdb2c8205de342e29cc0519887f8f92efd369e92a0a94ab33a5cba3a";
+ sha512 = "da9da528081d70ac504f61ae7668150e1a33acd159bf2f984805b7e76fd3e556cc6982b2d9596c621c533817c2cdd5e5ef28b42f362137908df1af097ae54f88";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/si/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/si/thunderbird-60.7.0.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "a8781bfe6bf9ceac67bab6e2f2957d61bb5d27292a15ea24776bdd8dda4b7828a350ec8caaae40a894db85b9d9fe4d457172f8dcedd681fa58912eef74ade60a";
+ sha512 = "1ec7e7b376b8d1ad9d25b753f785c05fcfd8f46d50b8f9ef8a73600726ba056411d4e2cbca5cef3e8eb7fa9531be7828af30aecd10842ef0d46b7ffd09b6c95d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/sk/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/sk/thunderbird-60.7.0.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "b22ef7083b344f8dec27b09631468c1263cb436479cfffc82b95ec78fc05ef66ec9b133d612dd097f9c24096b9c4e538efde6a88150816268a3a5a2d81a8e1fb";
+ sha512 = "598a8eca2a14a9c76b098355bc735c641763762dde312e5a47e8448bf0ae5fe2c78061c727a7e097073fd0d05e121fa1f4fcecbafdf02adb5c9c18a92e5ada47";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/sl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/sl/thunderbird-60.7.0.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "b3a295b4f1a27a75634bae5dbf033973849659bf9dc9fdecf33b90618aa919bf644e2211c789ceefa495cc72e6586ed1db1683658ca88f0fe4cb3ed7a909a208";
+ sha512 = "724cae2a2437e337ca5142916e6072e43a5f329100ae3e72c258cf7efabeafbcd10c8c6ae0fe1e507afdfda23492e5d8a4f54f373bfef9025e5663b8bae291ee";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/sq/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/sq/thunderbird-60.7.0.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "5f990f0f257d7b096f4310de22a0ea26f27b18e5f7566f3eed45bed66ff89e384f55b7932fd5ce65039077ff902631db3feffce69d2e6a8e13893586759d14b3";
+ sha512 = "317b776ea77f7232327e7bab54f27b2e47ada0f6ea7df42c42ef89ce2df0d9c3a24b752c08e46a8c246df5a44b7e34c7591e01bd63ec3cde7f537083dc1f8304";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/sr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/sr/thunderbird-60.7.0.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "71623636dca3b89af58feeb1b998b9bf16c8f8c7ff7c8f273aafc0500ce4b5d4bfae3e997d8669e3075c6586b631df0a613ba062fc4d74cf281f686aa7b18109";
+ sha512 = "768f31cc6ef0adc40253f60c312cdd8033e1fe5515f007ac18db6e37da79d2ef70ff208786cc738e31ed1ca75d5745b9de845f22eeb4bd3b4c8f7f7aff074af5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/sv-SE/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/sv-SE/thunderbird-60.7.0.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "2e0f6115a0e1b538288594ff47b92b1eb688a26e5f67bb7b83b5c01fe781efe414fc8a9e2c289fd7312026fa1b9bc56588a0c0b25172c35d1e224269a779e40b";
+ sha512 = "93951ffef37d547bb13143863c417f3717a4a6d54498852bcbd729f20a422d5a05233161d6970bce20f6992dfa07032d779160659b21e9e858505649ee2b3b6b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/tr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/tr/thunderbird-60.7.0.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "fa3aa0c732a4e2feda079d283f6d0f98eb721a88e98a7df70681acb50d525e48af273deb19e6d2e5f41d20fc5daddf0c89c3e6d9ced74ccc34bd75fc12ebf26b";
+ sha512 = "c4a5510ecd6a2c98ef335b2862ec8b5123fcc1c88e3be72788f5863219abd20a639d7843faa19331ecdda6dab0365f21abb927e8fcdaf42ee4f36aaa37577fe5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/uk/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/uk/thunderbird-60.7.0.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "535fff2ee782b9818f3953314b084f5d63af4457310e8236b5dbe0fb7d0db5ef3c1aa0efbb992ef32ad89cd1df3ad50acae26fc116eae474b6b6970cb1172772";
+ sha512 = "54854f5b2c237b0545e062bfce142d9ac5f0353f0e2ce066faadb77e40bf62b1468c537852d486fee610096886d1ffc815948037a8a7fe911133f15ab1e47a70";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/vi/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/vi/thunderbird-60.7.0.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "54bfad80adc5f4a97e5dbb098e4330a7248b650178e9a9f49b2252fe1a15afb7e247f9af29253f59c7ff43e8af67a96f1cf069f3919ecd53ce0ff953e6cb42de";
+ sha512 = "85203efbb6e8f19135e61a4f297e7556592783d8e254f63c12687b77224af75b5c4d9a0aedd1c50dfd178a0cae865d980d958a8ef6c01b6932322c60ea052a4e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/zh-CN/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/zh-CN/thunderbird-60.7.0.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "7452bdee386e1e85967d7b88c6f935cb89ba7dece1f39d3b20f24cdd04a99793d3a11c333b76d107fe88d8c4c3eb69947be11792af7f8657515c48eda655d237";
+ sha512 = "536759160596e2c893114a7f5dc094325b695fec33543d32feb5b92e244079e9c64a22635b84b5587a7bb34c613041664ad7303fc39b8d25a510bd248d38d124";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-x86_64/zh-TW/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-x86_64/zh-TW/thunderbird-60.7.0.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "0c1a7048f250bb0f3248ed92ad2e45d3bb01b308eaa6115cde9050253d960b6538467ea6c5754c6f5458035fe31bd2fc529ab423f6ca9da179dfb7f51ef1f612";
+ sha512 = "b63e819eae2b5aa71ac13fc875dce504effadd7e00bc46eb6b5c539c34d569d33da4895caa37a424b79d082a8b3693ba41908bd49d4914937c2d2a123a2feea2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ar/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ar/thunderbird-60.7.0.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "c04863a1693b2e0567eda646f6364b58cbf959c61045ba1948aebe9f30f63351888cca4a70de4a1655b48ee0407e0c665691c6ffcc2638c18b70046eb04cb02c";
+ sha512 = "57acb34987d0d098bf8dcb43d44460f2ebf29a88d4b5377cf889681a50a71195fa81c4920d7fd69c76295a7c41fadc94790e858de53182e5257260817318f49c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ast/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ast/thunderbird-60.7.0.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "ed4c86716aa7ca675577f577f62bf11f025ba96a061e0c89952a99ad5e3ba3e3edb01dd8d428cd0884fdc78127453dcfde0e81ecb4ba3e11e650022f6df07102";
+ sha512 = "f538b3fdff93c7d19962c76e5fb7dba635fb8d2b14b760e39b024e04d878d475cc9f5dd317931f69a92cf8e79e62b32f9d1230d7876b4a5647233111f256d522";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/be/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/be/thunderbird-60.7.0.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "fff19d979335f90004f35646edf2c4ca7f1243a013d79c246db6a0139f787573bd2db2636adf503366a94d44cf8b932d2141ff1df2faced750ac6c604116d6da";
+ sha512 = "a2e97e6393f9aa24e7d99d8f200019279bd7535982670cc7841411d9f8eedce1b0b7a17c272792097053d50974f8ea092019c1a2a86dfc781ad13f49166c35a9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/bg/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/bg/thunderbird-60.7.0.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "afcbb510382a811af5afadf306ce66915f472a3cac62ec2e2ab5930c795fd443600c02743be29db3bbbccf3c9d8507bf54ad0452bd580de4f9db52d5438aa596";
+ sha512 = "5936686f7e62aff1475e6ef7600112b83316befa54a9befb34edadc5a2a03e5a4dbf2fb92b3b86b2a4c56296fbad50ab60922006638ccbd705225f6737231ecb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/br/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/br/thunderbird-60.7.0.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "3ca375f94f1f5795b2676d1e8774fc17e3eb0824ceeef6b4598b99f35265806a017e0dfbf2b07f275eae92b68fa975b05cf2d66c6adfd1147399ee7be3df94eb";
+ sha512 = "58153a303b6a76da23621f9503acb1ae7afcbc8fe68b4dd7d02a8cfcb95e3e5f86e8b3f6f6dd2812ae9781831d6b311c111e0a129d22a7bf83b7e15ebb44cf88";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ca/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ca/thunderbird-60.7.0.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "75d31ded8c44d8429c58f8c6bc1b5104a4b62a3d0899ac81ba9deb277204290d7ae079e6baf4b243188db7e1050b4a0b9046dd26ca8fa546083fdfbbf724bd01";
+ sha512 = "fd3f289257574191c25e0ae5adc099f95c8c757dc881e8b85404d2df91069f09e6e8e1edbc7326824b55c8d7e10356e2e95f8d27fd741b0ce650cf32120d423b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/cs/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/cs/thunderbird-60.7.0.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "0ead8f9276a6dcfaf39c1d400c892f95d431cee960c94857cd3e95e6f148571ed946325e6518bcea5821aaeb0e8f8f5dbbdd3970aad9cda549dbfc07eb2392ff";
+ sha512 = "3d9f97fc839a33ead139e47aebd248dd947ee80c217c065c6714198f3438f5675611d27bfe26e52537bcf595a3e4dbabedd95ec3fac98cdd541da7af05cd82dc";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/cy/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/cy/thunderbird-60.7.0.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "fb9d58efc4b0a72a1bbe09624d38b83227c94a2584b4a852b95753d83481b64194e6d14578fe24210581feaf5b8ccf55c530cb3bae606ea6acd39a456a91dcc4";
+ sha512 = "08b3a7ca0b49cdcc347f04cab508cb037c603eb255074c3c32ee06caa9f15f64038aaea2f96837beb414bafbc8b41e699edf4811eb7ef823c481b37c275d46a1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/da/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/da/thunderbird-60.7.0.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "1bf483526e7e52626b6298c93c6586d1973cdd9c3aec660b31550b4658690e8454622276d2bac3b096acceb8e9b41fbf7db735ed8a2c185ee968e489a62ae329";
+ sha512 = "6b9c8d18358d771b039e4d2dba999c18d7b8ef70ed74cd4be50325d3506015ba9f3795e9b489f0e99169a02db8daf5a91481aab0c43412f4ad6db93e03fa0ca8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/de/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/de/thunderbird-60.7.0.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "1bdaf4b2a5ce2b1824250b4fd35695ce9c3be306b8c21d9002995e142f6a655166df15d3f68f80dc0f5963f31e87d01b00ee8c4463c6002df0eb536fc3eb2bfb";
+ sha512 = "55c741a9b849a2b7a8df800967c6ed17cdc805d7827137099fda1466c4677eb630fbeac9e28d1b92eee82521352f43bb77412f896e5d9ef21d9bf16e35a55898";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/dsb/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/dsb/thunderbird-60.7.0.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "0b6f71ec6d02f06dde3509fd1fb771a341b12a7a44681d05244aa7ea61726f8f8792ff12a72b0700196162047b23b7a9741a3522519935813b075d617c79490c";
+ sha512 = "bc96d4452f5b4aba09e30f65bd9298b267fc5b6982ea126d31bb3af22cd55bc9f29040b08d8580000f15b17f4fdc5b160f109145a458d5fdd8b7b6120ae6873f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/el/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/el/thunderbird-60.7.0.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "bec935b6e469400f7d88fee26dab49c8159dd8a74bd34827122d23276e6b5e837dbedb8281b0a2c1b87e90d2897e2dc15a475ac53bf911f15887280630ef82fa";
+ sha512 = "c448c0fd389e9fb6a7ac1771ba2481c69af6c5549044e958bac258ee71d3e0a80a1ad60fd80e33fd7d96ee0e5921338b067d7d87281f354950db2816f185477b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/en-GB/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/en-GB/thunderbird-60.7.0.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "4e28d8bbc384c98767825e16111d24a96ad2291f40b1eb7b295ab2b7103482a9aa11c00ae5e455ea7e5a7e5d077a4d7c45e6f8890c69e7c7c237909c332bad75";
+ sha512 = "29c181d15234088c4e823f9681f8205a910190a493779733e587f0ce5eb304dad367b72b635541d509f2f5ab1bf7cbcaaccdf70047f372ea9f15c33605078778";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/en-US/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/en-US/thunderbird-60.7.0.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "6b5619c5a03a4d585b030682fc41069c3ebe3c783578853c3c36c9055fe03c78c782f2621c12a454b4968e5416e01312639ef48047b407558dd6ad85fd81befd";
+ sha512 = "631d84e772069bfe192f7db3fde5113595201b56340b8284fbd3c26c58ce67e93c2e52bdbe95c8378fa1b99f6d26d4ba6d2cc5851321251dc84c5d375773824c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/es-AR/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/es-AR/thunderbird-60.7.0.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "9b6828c7c646f0483b758902d2cfd7897649acfc1622d1a338320d0f9a9f52b38dc8734ace3816fd4a116883ff7c9ffdfbae6b93e5070697a108a7df207de1d1";
+ sha512 = "b1af2b1a40167ba7a75f833b64f0d27f9be48ec91880884ef33f931fa439084f6ebd77eaeaff19140d50c4da256325fca17385de032a05ebf0b1d0716ac80ea4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/es-ES/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/es-ES/thunderbird-60.7.0.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "e0a8d2e68602cb5a9c0bca574ff8ed797c0e71a2bd86519e7d7de1ca8fc54316bead8ccc35e7f8dbc26cb11ab76e59076c09e69edb8175947c7c0dfab5758e3f";
+ sha512 = "1f0452f271eb218d9370f627a7e1ca0b392e8979f26cc4396c159adde26a6f70779851e6d91787c5274a401402f1b924f72bb1add5b6d90c5442d32e86cf8c1e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/et/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/et/thunderbird-60.7.0.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "c597b215fb574f948ed3cd169f7fd814a9f23e5c797da8457d9c810097f71b26751b386280cbba2fbf0224d07665c2fa33c3cb19c0fc54bbb0146fa271b25442";
+ sha512 = "1dac4826026c051fa38a96287c5a5d5849679681994b584e08ce4143b229503d2912db520c6ddebd081e4d3a799fd692935436cb6816c1ff6a61bf40240d904b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/eu/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/eu/thunderbird-60.7.0.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "9c1dfdeb74e6882689c036995d20ea7d0cbe9f3b406ec15b7a71d1f890cd209d3e7b03f6ce35d778adfcad2dfcfeb20ad55b9888dd222ffdb429166c8ad3a905";
+ sha512 = "3417239cb9b16b49a97df31008c7768e9fdc3d6197cc84d8bf360e2ff64c7d81f11e52e530b65d54e3a1ef4a1253c6c53c9baec8ffc915a4ae4d33e9abfd6d7f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/fi/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/fi/thunderbird-60.7.0.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "fa24033927751c7b1cffbd3e165507d8cc0ef7ac7755f08afe102b9b9a339d0a31b8f738d1bb71bc0a8876f51a1411b4840b033a3716306e5e8a17eb4d7f0382";
+ sha512 = "3e31ccddca9537a2ddef98e4444a85eeb37227ef5da301d6aecc3abe714cd84aba33b926a7fdc8e5d6c3b72082d9457c0f2362aa5775d7cf354e2fc6600fcd2a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/fr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/fr/thunderbird-60.7.0.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "37daee1b1c0f1757a0098806d41bcd71c0dfd700bce2f7da58ec670c58d2b5fefcef2fde102bed7fa6daa62b59404716c26547de54a00eaed6201616c681b5ac";
+ sha512 = "813887a9db572f588b769c91061886547e813e8fb9761df26294d27af6eab75d1befc1950b890c3eb0a166b6e46d36bc55a2baecc96a4d33ae1a670c28cea0f3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/fy-NL/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/fy-NL/thunderbird-60.7.0.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "85b2a6fa843d5364eaaacbc3399ad4a05169a7c988640f3a120fabe994bca31b0c22019a8537d598a14d33dc75f2037cda5504cb7d72149fec1ff040e1f962bd";
+ sha512 = "ee9621ddc0eb0195fa5a4ca0b982eb9805fe470a098e81e0a0620169ef13081654200573943d429cb2a9ed8de61aa361e5fbc6ae35498bfee8de31192d8a9944";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ga-IE/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ga-IE/thunderbird-60.7.0.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "475b766786a50d461ec6896b72c4eef83231f903672d275513c632eb8f4e7e1dd24bc635c18c066fdada4616b99116b3757d59d2718bc8bf21bfa495abea9a5f";
+ sha512 = "2e017ce8473ed99b573546aee5ec901c29243a9b4412ea594ce94f244c41edbc614eb902859289ce61d9e25edf0eb534c9bef1c00f3dd67c9515ff24caf6eeaa";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/gd/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/gd/thunderbird-60.7.0.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "d5ee56fd14c4abbf9d3335cd75e284d6c00ed28db74ffd2a726a19dbed21a74e2d97e9dcb63d63bca31f3637380a29f3bdd1280c670e446850ba8d4e98971395";
+ sha512 = "e49cd177caa27b072b08f71e7127a67e96ccc5960c6900e6f43cf47c0e78000f7f03e543243ca316834dc7c887fa0dc5675fa5f304430b0a8435c3be4cb95e92";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/gl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/gl/thunderbird-60.7.0.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "262b36a73483dc3a379d416862f6f5c6d685a366f25a2599ba527d28fe0a17da9f3d377c38559a0688cfc5e5927001d3db7db0693fdbae44ba5596ac92c1a72f";
+ sha512 = "23aa10200e5e96b969db0d1e5c82b3cd78504d2742ebb09fb5910f0d68aef08f09d278954c3612bc980bd820a290b28184de65b229c3edc228db8c6b77d335d1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/he/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/he/thunderbird-60.7.0.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "404838f4defcb0da984532ba32740c9919ebf57c9e68137e43b1e40263a4f553a573028bc96c9f056141e405b4528e060ead4e30dcdc365e87069393b0056a5f";
+ sha512 = "ff21a536979886895db1e18bde93baf13447f240cf1d64a6018941b22cfdc206b0afaf7e02fa76f778e44d1ab333351bfcfdee475d24f37ea270a5eb500b099b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/hr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/hr/thunderbird-60.7.0.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "9793e03d4b01c90af721a0197e20ea61c30e09e602321e214674a85ba5366a4eb4a394d0a2347af2a3f8c7f40da2eff50bb25c935db7b59cf573b8e6033469e1";
+ sha512 = "9e9f91262e633b6bd51cd349450c2078bfcb49e10c1bb63bdd0ce71cb63ba7aa35481547030638f5e2ad810959217887a69ffd99453cae03e20763ed71e66263";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/hsb/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/hsb/thunderbird-60.7.0.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "bd5be5e781edef1d410ed85552d72449e94b13c28a9943cc64ea4bf8092ed477ad61a39eb956b3ed008168a62206a0684ae8b38f370ac88a3c67df78ed57720d";
+ sha512 = "3205a0d1d96cf0f6dd1cafc08e3ff4f9fe14ed2917dee0209e1088a8aeddd74c59bb413d1ac32650e9829890ccf5b860b3a71f9dd92d35be7b26f201bcadc1a5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/hu/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/hu/thunderbird-60.7.0.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "a5f7e309efb45715dd67b4fb5ee1a88ac4c6ae54d5755c2476cff246d93abca6725116817173c72e701cfd570329f1d84f7732e3eaf3e7fd96e238512298c595";
+ sha512 = "03fb2b6cf147af43ef8621201c75e35767378d72b67d9e3460818ee38a78a35d62ac404685ed0a212da055632f6787402663e5c87f4cc2e827ad23fdd7c54793";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/hy-AM/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/hy-AM/thunderbird-60.7.0.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "145e562fdf0ea143d0c1e9f4581f2b2fc58bf085aa227e4486e780f7da54e7e0b1cce53cfe9dad1ac47aca50beee5e554f3494c7df2e2c240a3a9b350d5f46b8";
+ sha512 = "20d87f045b7969783c44c82701dbdcdf29fec9a2fa905ed0e00d824174c38425044983ac8b0507e5c8e5ce6c2489528ab0da880e06b85ae45f78be9a4a48c5d8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/id/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/id/thunderbird-60.7.0.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "6f865a97783fe0269547981367717de6577780b24eeab33e26a19fc716cd4733cca28b7fab8cb8156b6a04b09e09b75cfca8b43c07aa99088cfe98a96a716361";
+ sha512 = "24a68981c39b12c50a2b7454624d548196bdcc0979367169978e782a7f83121f8bb097dd117173a8d3a75cce79c5d40c607048547687240f0e8408525ee66101";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/is/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/is/thunderbird-60.7.0.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "756301497644e2656a383f0c76a7723b1ce9ab49f760e08cc6f0159c898634664dcf5f92952310c408ecf8818939a25b3b181fd50836d32d017dc4c45b67dc25";
+ sha512 = "4f7dba2a9a04ded46d8812983368631bf9528def3dc03dd06804394c20c6760ca268c8638ae1813558dfe48220ce680a2a6a177817ae81e5719f34d310830b30";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/it/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/it/thunderbird-60.7.0.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "4ebfd6d2dd79e238594286412516729b66fa26d99ed3d6a399428bca87f63bd3f329877f70702d1d43229755268b0e9c951c753ce110250e805cdcdf576e0eb1";
+ sha512 = "af3cf72dd486d6bdc585d06cc4f32438c7868f378e3ce2910da08c58f20f4e7d4c9012231f73cd95a2df22e1badfc23070b9cae5694889c562285c6587fafc91";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ja/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ja/thunderbird-60.7.0.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "0cbdd253afec94716c0a4ce4131e8260cf7e42d9a7df48210875524ca33d42fc7c011b3b9724b29054844b159896cf9a03fd817af4cfbae9b718777d4f4b278d";
+ sha512 = "20169d2f4887ba49d41f2fd608d4842ad076705910bf720009bd2408d386ebac7ede2c0d52392f49e9c0f4b7403806716ba7dd150ad142a1649005a6d51a5da8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/kab/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/kab/thunderbird-60.7.0.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "cf363a3e2177d2ac629713674bd22da270887882f21dccefbd6ca30c71f535c5b69fe1c05554fbed95920d4ebc4acc1649a05be1594b1cad5f4b17a7652f3e74";
+ sha512 = "6be43761a03541cb8c8fc61513745abe9263e9cf2b47dff191742bb1fb6fc6001b7d60ce80e1af85daf6016810064ce532be11f82cfe8ef352ecd0722cc983b1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/kk/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/kk/thunderbird-60.7.0.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "77555e556b3d04ebc07390633e4ba3a3fda8c7ca9c8e7a61f522633a20378c857522598a3ad1b3b55e03bff181df615186183947c7770a3afc3df6c18d58446c";
+ sha512 = "31386ac56cf93b3f9aaea18973b5629f8afc1ed44f7fce3ae09ea9dd11a344ba4ada59422f8501984325ddf7906d2f70d69cbd5c6ddc8a768797d22232524423";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ko/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ko/thunderbird-60.7.0.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "634c0ba3322494670df3c7d14b8866d55f185588d1fe6dde706da86a66481f98deefed6739561f3c0c73ca005e1581d541da773c5d3d7caddd5b49510d9f138e";
+ sha512 = "a241269e84ca52dbd00e073e8227f108028f2bef27f083d3d4c1fe76b4cb05231598bcb88726406b61168ca855ea995e13858fd7c193b8e346e8e6c7bd2b4fc3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/lt/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/lt/thunderbird-60.7.0.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "9646f54ebabca5e8503d44b099871bfb6345cd4a3fe04ab0211aa8f019800b48faae93eb5565428818c4cf25b8b1e536614f23e4fcac76791c06482aa9fd7396";
+ sha512 = "1f222a2ad3c583020957eab49ec2a6f3230880e8cf5b38be19b7e29b9eb593606f6b3a3a162d47c809ff3da1c7000f599e5ba0fd921340a442bd262f9c02cde3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ms/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ms/thunderbird-60.7.0.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "ecec0bac0770bd3cad75881266aea00a9ae3c8506a64e000ffb118cc18cb28a3968b9ece10e11bbc4628612065345ab1f58df0df130a2e497809a244049c1774";
+ sha512 = "faa2fb605a446e79b3f0c75d5c695de56c5404aa3921bd6684c6e385cb97089c43f33db7611d824173d4df9bf98001a76495a68324d87d52e8b4de58eb701a5c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/nb-NO/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/nb-NO/thunderbird-60.7.0.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "271be3b2bf2424bb149e7f1a1c11564e9b9d849e043a95489a8215a3ce757d032cfce2ff5df1b666fec5cad00b7a540b437d6d0ef33ccec485a0b5b96f61e8bd";
+ sha512 = "e1b6d917391561dfac0b36f9a305135659dd96e52cfc9a1080beb3c671a00f37cccbb39de02e790a87f0efef86ec8a8c0b8351184d44c5cbff5c5ba9862ac03d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/nl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/nl/thunderbird-60.7.0.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "a80e354c855d51fc278fc46e83ad41de079f1aff1fb7d0329eba377c07ecf67621f9c11e2c51760b23aeea4547eacc7916f3092e61009b162283a8f4458b5573";
+ sha512 = "957caacf6a84c9d4454fe7b708c5b798c32296ccf2a1aaebcb02645065fb10a2f6f098a0f14661ccd4f9ae665e7ffe62fba40df7aa3d00e63606ff2d97a00c45";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/nn-NO/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/nn-NO/thunderbird-60.7.0.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "312414bf118a808ad663807dfab5f69bca61a8f20087cfeac78883a869cd43eb03d5c7dd511a32350c0f59b0e28de7bc1992ce3ba48d8e1b5fe3c2abc09441af";
+ sha512 = "5d0017b8485e7236ce23c64d1b8aa30d3c8f0d938bf6d98a4413b0abecf6bfb05c2a0975410432702f967e7261b028dbd89c4580d661f438c7c0f9a3181b7845";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/pl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/pl/thunderbird-60.7.0.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "4abf25e59400c038e9719200459903e3e113302592bf65d024c1dd05852d51e2969f3f53a33dd55f9d131bcd1405571f713a6dc3165d8af1147616574f4aa5c4";
+ sha512 = "22231f71381381c358bfabbf62970b8ba69d6f72d0d3a13ac1bd04f870cea53cca9d937b28e8f456f5aee80b3967af5d13fea40177d8715008fb4ce84aa90f3f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/pt-BR/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/pt-BR/thunderbird-60.7.0.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "ca38fec5178dfc2f841dea0d30490df8be3e4424a2d94bda1a3cf1cbb1908df90c29adafe3f844ec13f2bf87606fcf20066d3789b29440b55762a9c83ff5bfb9";
+ sha512 = "53110bc399a63da962617e11f209aad895fa5254be955d70ac70d3bd70676dee695e7ff485255edc2107928ed169118fc50c149966b475fcdd5868a453710db2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/pt-PT/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/pt-PT/thunderbird-60.7.0.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "f8c25a0d9d6a4ca582c7d3593c8a74c1931fdd4a85ca9ac2af0b37efb877ac0232e9188af5cb5985f1a865aabb252b58197cace1f6cff3ce4551b5f4678eea56";
+ sha512 = "05935c86b294444e296befb13803dec0b4b848e08324346dbd43a1c22e66cda226d0db5317a2c857cc799e6d9d0433c29594a529ba8a7ce3c371729bfdc7651e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/rm/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/rm/thunderbird-60.7.0.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "ab74f4fa6729d6f7c2f0fb1f99c457ccd65a81be9bb5d7519beef4ec1ddf58c9f51370e7e3fbf71f2a8781f2669b50d20e65e687794b7dfeccb7da99865bd614";
+ sha512 = "4567ae5e584f65946209d5ebfad07db68c11211737e446d96ecb3eed2ae55902600eaf1dab7d870b7ea00c38d87045ef45ebe3e78a416070b93206f0ce9a18cf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ro/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ro/thunderbird-60.7.0.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "cb086a6ce3446ee8437c762040b03ee58a3cebd1a0cf473197e7da19d81704bd1ae7cda5d3329e17e76d1f7e682674a12bda3e964fa934fd271d80cfcb5da907";
+ sha512 = "fc323ca7ab5fb0d259a941ba4f1c49f998fbdacf9679185bc4f17665d092aede662d2ac7793a451b81ab24e968c8ea7a0ea391ee69b1d646831927fcc35af833";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/ru/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/ru/thunderbird-60.7.0.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "2334973a52a5e954b082be0bc9921a6034532edf558a2ffc2b1ffaad7d1d8777832cfe21e005290c65f4ed906816243dc3c1a35a5e078f005ebe84f3769cbad0";
+ sha512 = "0f656f500decb22f1e84f1f92d8e5faa4a702ec3858a759dcc303ed0caec50dcf3711da15803dd7c5cac2111653e49276f8935f99d7b75e385dbb0cf9512003c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/si/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/si/thunderbird-60.7.0.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "aa7a52b410a507571551430d538fe4b84efbc57bad8eb89631c2c79f8bd23399a60e8ba8018e9b086d6562ef4e0e96b5f6b912952838ef38507a6eb41e776fe6";
+ sha512 = "768c011614527977ab446e0e9ac42f90f1bb91d2d1e3ee5e5e91a31e6085e12dbd37542080b964724e4c65a1cad25be7998137740f2bc6cd82cc2d1b9056fd75";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/sk/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/sk/thunderbird-60.7.0.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "4cef3b0059d27313ff35610fc273b7c02faaeb21996a5b62be6cefd0c4b76162fd8a54bae3e2f6527135bfc97ed8133cde34e51505d8abb25d90a03716427370";
+ sha512 = "d648a5a20a1c0e4d6f50368fb57000e99b7868b1c4bab8861b2bea73e8b0ec2b9912f41e16ee272d49a6ced36c1e61ba267ba41b136255e3c5aacc15952fa3a2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/sl/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/sl/thunderbird-60.7.0.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "6e4e2771a18bf7af347fff15eb5b5c312b7373d2fa86474317154ed8ae48e996028cda78ad9ac5ad09839af9844039334a25349df2c45c30095606f684b849b4";
+ sha512 = "ab9923acfcbc5c327a6f7cadbacbf680f1db10a27bbae270824b7ff4673805b20ff76c3fc694acfdf1ac2e537bf4f08d9599b1bdb4a2824eb98d264ca8a9bfeb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/sq/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/sq/thunderbird-60.7.0.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "eb1d190808ad33b2eecfd8979c3ae669f44c3426bc247781b11698818f1804ba1b28851b7c7f507b676c87d86d89b7f537d378a130997dc21cd8870e070dedcf";
+ sha512 = "fd6b788ea87a04185162d8bad64c5ac4d649e1c9a89b1eaf1e9cba704827a0d8e70e29cef4e18dd3f63307cde959561ff9cee880650cc9476b31f2f8c0ebe450";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/sr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/sr/thunderbird-60.7.0.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "bd46e690c9969d65563075996581c9ff13576143425985764a1fef4d2d6d4bf55cecd1e52b3e7a237b187a9144c928578879737f16c4b59be29120b67b18526d";
+ sha512 = "1edaea6e10b22ad82eca06a5c6f69a9a4cc515c32cde425735e7da371046ecdb6fec3be63212fe7747cda54661874a41dc1f7579ca0ccf8991fc459e3f813b2e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/sv-SE/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/sv-SE/thunderbird-60.7.0.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "19e859d0f94de0b4cd82fb35a63a32cc9dfe09c74429380c90f749748e17123f161398a465b53aa333c50863a256be99df4029f45d08f80a7695b45883c94799";
+ sha512 = "3d895759ce8005718d3348058e6b9146d2cbab42ea9bab63446c0f91177ab1d52a84199fe4c0ef4cb5da4994db7239d97b7befddcf5155cd4a53b5fd91b250ad";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/tr/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/tr/thunderbird-60.7.0.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "964a16f7836a1dcfda273db6c65ea22d516722e410ceb961ee8212540837911ba3b156d5c365a7c1a79c7d2239b0df03dc1176a266d09b075c1e5b870a833352";
+ sha512 = "36d5dd40de1824b97615353b002febcfcacceefd4af189313920292229511ef83049839fbe5fa18a3ae87b922c750da774f69f8cde79b77c57d4aabd14053229";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/uk/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/uk/thunderbird-60.7.0.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "aee1e5a933bcb5238263ebc6ea57e9d3fe851c19c5c017e1e15bbb9e5cf1e9f39edf75b1b908caa4da688e14e41e4318a7fca0c41d045355cdc91b9ef48ba957";
+ sha512 = "ddceab3f336e9f0edf36a057e1805f41eba3308fe7ad06a135a7cc1a27d59229d9481535eda33aeb2db23c5b074d6bb83e02233645570f8ef4afef697210fa02";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/vi/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/vi/thunderbird-60.7.0.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "dd667bf5db90586bb29c97c8dd3bd0d50c5f4c5f5cbebdfc908dda4a54e72575edcf5d5b8bed97b1b6aa7350ea79c767115137aa6500b263bd5ae80d61efdbc1";
+ sha512 = "b660eee5eabfd65602d110168c81b6ba99d45f1ffb02e8a037bde6d47513f90b88f160b4125fbd91d3057bd35e1e9b743a715385b796aa2873f4906e3e44321b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/zh-CN/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/zh-CN/thunderbird-60.7.0.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "f791ad02b1a67ac2906602a3c90238e5e8062fedea5851a790196eb1da0e19174543a7dc00e53460d40a0c39089c109125875fbec458fd65a650ab7d438cafdf";
+ sha512 = "4d4e4d032623835297ca5e43bcd9a058794c3568f4918a6c984c39b8f0998a1f9b412fbb96047c1f5e9bc7bd69253f4636bea81fb6e61031c66ba4e5f229f5e9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.6.0/linux-i686/zh-TW/thunderbird-60.6.0.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/60.7.0/linux-i686/zh-TW/thunderbird-60.7.0.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "83cec9f663cd4e02d921f2f96a7dab791cdb015756f63148833491a263abb297bed5ee64101b4ae86ea4a3ed09b75d668bcf36a12563885f3eb164655b3348bd";
+ sha512 = "0bdd9c9bd11544abb6230fc94bfa49e2f1ffccf8a5684a5326a7b38880870e847841e0c81dcc33b969fe4327c6a2d51ba3313306842cb8ecc084222444f2ac4b";
}
];
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index 2531e414cc1..d08ccc0ad60 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -24,11 +24,11 @@ let
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
in stdenv.mkDerivation rec {
name = "thunderbird-${version}";
- version = "60.6.0";
+ version = "60.7.0";
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
- sha512 = "2s8h6z3rkylrclng1cpmj5dvsbhqymrdwvjy3g2s8rq66xca13wkyswdhgh8671d0dw9bmminikk53d2xqg7lqvvd1rdsminwscln4z";
+ sha512 = "0l773bl9kkrz905rm4ipsic5ykkrw2lmg3i9c5vxpc0j1qgmz3p3x5db1kbk2yy2i5hx9lkn5szhgjf71d7dgvf7935z67d5djqnhk0";
};
# from firefox, but without sound libraries
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index ccb346868a1..f57bbe69f7a 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -3,14 +3,14 @@
let
common = { stname, target, postInstall ? "" }:
buildGoPackage rec {
- version = "1.1.3";
+ version = "1.1.4";
name = "${stname}-${version}";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
- sha256 = "00jshqa0nkwj06bfq16p359ss6nl6h49s31hag79wl9gwkca38va";
+ sha256 = "0a19l1kp4cwyzcd53v9yzv3ms69gn78gajkyfawafr7ls0i8x82f";
};
goPackagePath = "github.com/syncthing/syncthing";
diff --git a/pkgs/applications/networking/websocketd/default.nix b/pkgs/applications/networking/websocketd/default.nix
index 050358e4dca..4160e70b9c4 100644
--- a/pkgs/applications/networking/websocketd/default.nix
+++ b/pkgs/applications/networking/websocketd/default.nix
@@ -1,21 +1,19 @@
-{ stdenv, buildGoPackage, fetchgit }:
+{ lib, buildGoModule, fetchFromGitHub }:
-buildGoPackage rec {
- name = "websocketd-${version}";
- version = "0.3.0";
- rev = "729c67f052f8f16a0a0aa032816a57649c0ebed3";
+buildGoModule rec {
+ pname = "websocketd";
+ version = "0.3.1";
- goPackagePath = "github.com/joewalnes/websocketd";
-
- src = fetchgit {
- inherit rev;
- url = "https://github.com/joewalnes/websocketd";
- sha256 = "1n4fag75lpfxg1pm1pr5v0p44dijrxj59s6dn4aqxirhxkq91lzb";
+ src = fetchFromGitHub {
+ owner = "joewalnes";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1qc4yi4kwy7bfi3fb17w58ff0i95yi6m4syldh8j79930syr5y8q";
};
- goDeps = ./deps.nix;
+ modSha256 = "18hamj557ln8k3vmvcrpvnydjr1dy7zi9490iacwdldw5vp870xs";
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "Turn any program that uses STDIN/STDOUT into a WebSocket server";
homepage = "http://websocketd.com/";
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/applications/networking/websocketd/deps.nix b/pkgs/applications/networking/websocketd/deps.nix
deleted file mode 100644
index 1e610691f52..00000000000
--- a/pkgs/applications/networking/websocketd/deps.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
-[
- {
- goPackagePath = "github.com/gorilla/websocket";
- fetch = {
- type = "git";
- url = "https://github.com/gorilla/websocket";
- rev = "95ba29eb981bbb27d92e1f70bf8a1949452d926b";
- sha256 = "08lvc9l0qagyhyrjj6jkhpq3zapa5gqr966bm33nb4bc0pd38f48";
- };
- }
-]
diff --git a/pkgs/applications/office/docear/default.nix b/pkgs/applications/office/docear/default.nix
new file mode 100644
index 00000000000..0d2341113b4
--- /dev/null
+++ b/pkgs/applications/office/docear/default.nix
@@ -0,0 +1,44 @@
+{stdenv, fetchurl, runtimeShell, makeWrapper
+, oraclejre
+, antialiasFont ? true
+}:
+
+stdenv.mkDerivation rec {
+ pname = "docear";
+ version = "1.2";
+
+ src = fetchurl {
+ url = "http://docear.org/downloads/docear_linux.tar.gz";
+ sha256 = "1g5n7r2x4gas6dl2fbyh7v9yxdcb6bzml8n3ldmpzv1rncgjcdp4";
+ };
+
+ buildInputs = [ oraclejre makeWrapper ];
+
+ buildPhase = "";
+ installPhase = ''
+ mkdir -p $out/bin
+ mkdir -p $out/share
+ cp -R * $out/share
+ chmod 0755 $out/share/ -R
+
+ # The wrapper ensures oraclejre is used
+ makeWrapper ${runtimeShell} $out/bin/docear \
+ --set _JAVA_OPTIONS "${stdenv.lib.optionalString antialiasFont ''-Dswing.aatext=TRUE -Dawt.useSystemAAFontSettings=on''}" \
+ --set JAVA_HOME ${oraclejre.home} \
+ --add-flags "$out/share/docear.sh"
+
+ chmod 0755 $out/bin/docear
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A unique solution to academic literature management";
+ homepage = "http://www.docear.org/";
+ # Licenses at: http://www.docear.org/software/download/
+ license = with licenses; [
+ gpl2 # for the main software and some dependencies
+ bsd3 # for one of its dependencies
+ ];
+ maintainers = with maintainers; [ unode ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/virtualization/lkl/default.nix b/pkgs/applications/virtualization/lkl/default.nix
index d870e246616..40503ab89d7 100644
--- a/pkgs/applications/virtualization/lkl/default.nix
+++ b/pkgs/applications/virtualization/lkl/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchFromGitHub, bc, python, bison, flex, fuse, libarchive }:
+{ stdenv, fetchFromGitHub, bc, python, bison, flex, fuse, libarchive
+, buildPackages }:
stdenv.mkDerivation rec {
name = "lkl-2018-08-22";
@@ -40,7 +41,12 @@ stdenv.mkDerivation rec {
# crypto/jitterentropy.c:54:3: error: #error "The CPU Jitter random number generator must not be compiled with optimizations. See documentation. Use the compiler switch -O0 for compiling jitterentropy.c."
hardeningDisable = [ "format" "fortify" ];
- makeFlags = "-C tools/lkl";
+ makeFlags = [
+ "-C tools/lkl"
+ "CC=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc"
+ "HOSTCC=${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc"
+ "CROSS_COMPILE=${stdenv.cc.targetPrefix}"
+ ];
enableParallelBuilding = true;
diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix
index f56ce7bb87d..b66c1d9e4d1 100644
--- a/pkgs/build-support/trivial-builders.nix
+++ b/pkgs/build-support/trivial-builders.nix
@@ -107,10 +107,15 @@ rec {
writeTextDir = name: text: writeTextFile {inherit name text; destination = "/${name}";};
/*
- * Writes a text file to /nix/store/ and marks the file as executable.
+ * Writes a text file to /nix/store/ and marks the file as
+ * executable.
+ *
+ * If passed as a build input, will be used as a setup hook. This makes setup
+ * hooks more efficient to create: you don't need a derivation that copies
+ * them to $out/nix-support/setup-hook, instead you can use the file as is.
*
* Example:
- * # Writes my-file to /nix/store//bin/my-file and makes executable
+ * # Writes my-file to /nix/store/ and makes executable
* writeScript "my-file"
* ''
* Contents of File
diff --git a/pkgs/data/themes/tetra/default.nix b/pkgs/data/themes/adementary/default.nix
similarity index 79%
rename from pkgs/data/themes/tetra/default.nix
rename to pkgs/data/themes/adementary/default.nix
index 2a7b6e595c4..40190d65d5e 100644
--- a/pkgs/data/themes/tetra/default.nix
+++ b/pkgs/data/themes/adementary/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, gtk3, sassc }:
stdenv.mkDerivation rec {
- pname = "tetra-gtk-theme";
- version = "201905";
+ pname = "adementary-theme";
+ version = "201905r1";
src = fetchFromGitHub {
owner = "hrdwrrsk";
repo = pname;
rev = version;
- sha256 = "1j2w8na564f5yjm5am7843hq5qk28h1rq8rcbak4xsygdc3lbsfi";
+ sha256 = "14y5s18g9r2c1ciw1skfksn09gvqgy8vjvwbr0z8gacf0jc2apqk";
};
preBuild = ''
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Adwaita-based gtk+ theme with design influence from elementary OS and Vertex gtk+ theme";
- homepage = https://github.com/hrdwrrsk/tetra-gtk-theme;
+ homepage = https://github.com/hrdwrrsk/adementary-theme;
license = licenses.gpl3;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.linux;
diff --git a/pkgs/development/compilers/osl/default.nix b/pkgs/development/compilers/osl/default.nix
index a498eafd425..ff4e387f07e 100644
--- a/pkgs/development/compilers/osl/default.nix
+++ b/pkgs/development/compilers/osl/default.nix
@@ -8,13 +8,13 @@ in clangStdenv.mkDerivation rec {
# In theory this could use GCC + Clang rather than just Clang,
# but https://github.com/NixOS/nixpkgs/issues/29877 stops this
name = "openshadinglanguage-${version}";
- version = "1.10.4";
+ version = "1.10.5";
src = fetchFromGitHub {
owner = "imageworks";
repo = "OpenShadingLanguage";
- rev = "Release-1.10.4";
- sha256 = "0qarxlm139y5sb9dd9rrljb2xnz8mvyfj497via6yqgwy90zr26g";
+ rev = "Release-1.10.5";
+ sha256 = "1g7izkjqb5xmp87k2aw0fgkxhcf7b9jn9hi60lwav3yhs50j8qsi";
};
cmakeFlags = [ "-DUSE_BOOST_WAVE=ON" "-DENABLERTTI=ON" ];
diff --git a/pkgs/development/compilers/shaderc/default.nix b/pkgs/development/compilers/shaderc/default.nix
index 7ce7f9cefe5..7f4c895d85a 100644
--- a/pkgs/development/compilers/shaderc/default.nix
+++ b/pkgs/development/compilers/shaderc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, python }:
+{ stdenv, fetchFromGitHub, cmake, python3 }:
# Like many google projects, shaderc doesn't gracefully support separately compiled dependencies, so we can't easily use
# the versions of glslang and spirv-tools used by vulkan-loader. Exact revisions are taken from
# https://github.com/google/shaderc/blob/known-good/known_good.json
@@ -8,24 +8,24 @@ let
glslang = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
- rev = "712cd6618df2c77e126d68042ad7a81a69ee4a6f";
- sha256 = "0wncdj6q1hn40lc7cnz97mx5qjvb8p13mhxilnncgcmf0crsvblz";
+ rev = "d3692c701b1265955221aa0d6ebc656bc4442b2a";
+ sha256 = "11cvwbzlpr4zrcmmyd9h0kbfhmhr6r696ydmn0yp1jrixby4bmji";
};
spirv-tools = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Tools";
- rev = "df5bd2d05ac1fd3ec3024439f885ec21cc949b22";
- sha256 = "0l8ds4nn2qcfi8535ai8891i3547x35hscs2jxwwq6qjgw1sgkax";
+ rev = "08cc49ec59c3ff4d6bd4bb4f2097ede35e802158";
+ sha256 = "1xhgcppx02fp3nr7654mr3qrgy1fxlxdyl87jhmn3k9jf24gmmmz";
};
spirv-headers = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Headers";
- rev = "79b6681aadcb53c27d1052e5f8a0e82a981dbf2f";
- sha256 = "0flng2rdmc4ndq3j71h6wk1ibcjvhjrg2rzd6rv445vcsf0jh2pj";
+ rev = "8b911bd2ba37677037b38c9bd286c7c05701bcda";
+ sha256 = "0qdnj34bkagszyvci6ifpqd7iqvybhmqzvc9lvqnls44qg90aqh2";
};
in stdenv.mkDerivation rec {
name = "shaderc-${version}";
- version = "2018.0";
+ version = "2019.0";
outputs = [ "out" "lib" "bin" "dev" "static" ];
@@ -33,7 +33,7 @@ in stdenv.mkDerivation rec {
owner = "google";
repo = "shaderc";
rev = "v${version}";
- sha256 = "0qigmj0riw43pgjn5f6kpvk72fajssz1lc2aiqib5qvmj9rqq3hl";
+ sha256 = "1l5mmyxhzsbp0a6y2d86i8jmf46c6bjgjkdgkr5l8hmhflmm7gi2";
};
patchPhase = ''
@@ -42,7 +42,7 @@ in stdenv.mkDerivation rec {
ln -s ${spirv-headers} third_party/spirv-tools/external/spirv-headers
'';
- nativeBuildInputs = [ cmake python ];
+ nativeBuildInputs = [ cmake python3 ];
postInstall = ''
moveToOutput "lib/*.a" $static
diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix
index 367f1c9aadd..4a051f34b0b 100644
--- a/pkgs/development/libraries/libfilezilla/default.nix
+++ b/pkgs/development/libraries/libfilezilla/default.nix
@@ -1,14 +1,17 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, pkgconfig, nettle }:
stdenv.mkDerivation rec {
- name = "libfilezilla-${version}";
- version = "0.13.0";
+ pname = "libfilezilla";
+ version = "0.16.0";
src = fetchurl {
- url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
- sha256 = "0sk8kz2zrvf7kp9jrp3l4rpipv4xh0hg8d4h734xyag7vd03rjpz";
+ url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
+ sha256 = "1fd71vmllzvljff5l5ka5wnzbdsxx4i54dpxpklydmbsqpilnv1v";
};
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ nettle ];
+
meta = with stdenv.lib; {
homepage = https://lib.filezilla-project.org/;
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
diff --git a/pkgs/development/libraries/pyotherside/default.nix b/pkgs/development/libraries/pyotherside/default.nix
index aff7b409ad0..c7d43ae7026 100644
--- a/pkgs/development/libraries/pyotherside/default.nix
+++ b/pkgs/development/libraries/pyotherside/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "pyotherside";
- version = "1.5.5";
+ version = "1.5.6";
src = fetchFromGitHub {
owner = "thp";
repo = "pyotherside";
rev = version;
- sha256 = "1mczagl7mrgw9rqxlasgybrkfigdw1g7k542q75am8gp82m6wka9";
+ sha256 = "1cjx0fbrq9qvbirwy76pw1f5skm2afd51k4qb269ql4gpl67d5lv";
};
nativeBuildInputs = [ qmake ];
diff --git a/pkgs/development/libraries/re2/default.nix b/pkgs/development/libraries/re2/default.nix
index aeab7b2a040..a6a5fbed4fc 100644
--- a/pkgs/development/libraries/re2/default.nix
+++ b/pkgs/development/libraries/re2/default.nix
@@ -1,24 +1,31 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "re2-${version}";
- version = "20140304";
+ version = "20190401";
- src = fetchurl {
- url = "https://re2.googlecode.com/files/${name}.tgz";
- sha256 = "19wn0472c9dsxp35d0m98hlwhngx1f2xhxqgr8cb5x72gnjx3zqb";
+ src = fetchFromGitHub {
+ owner = "google";
+ repo = "re2";
+ rev = "2019-04-01";
+ sha256 = "018b8z3fgcr02rmhxdz80r363k40938cbgmk1c9b46k6xkc4q0hd";
};
preConfigure = ''
substituteInPlace Makefile --replace "/usr/local" "$out"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- # Fixed in https://github.com/google/re2/commit/b2c9765b4a7afbea8b6be1dae548b6f4d5f39e42
- substituteInPlace Makefile \
- --replace '-dynamiclib' '-dynamiclib -Wl,-install_name,$(libdir)/libre2.so.$(SONAME)'
+ # we're using gnu sed, even on darwin
+ substituteInPlace Makefile --replace "SED_INPLACE=sed -i '''" "SED_INPLACE=sed -i"
'';
+ preCheck = "patchShebangs runtests";
+ doCheck = true;
+ checkTarget = "test";
+
+ doInstallCheck = true;
+ installCheckTarget = "testinstall";
+
meta = {
- homepage = https://code.google.com/p/re2/;
+ homepage = https://github.com/google/re2;
description = "An efficient, principled regular expression library";
license = stdenv.lib.licenses.bsd3;
platforms = with stdenv.lib.platforms; all;
diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix
index c5d51e56fc6..203ef9a4355 100644
--- a/pkgs/development/python-modules/boto3/default.nix
+++ b/pkgs/development/python-modules/boto3/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
- version = "1.9.152"; # N.B: if you change this, change botocore too
+ version = "1.9.160"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
- sha256 = "0qspp97rddshjfqmmnqbvrszr66wq0ag05j8lcfsb9rj6ymz5s5s";
+ sha256 = "1qxhdmv58k2ipk47fbnpdg6jmbp7dca86s6c6gdm3d79aw17391f";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index 77b28bc1260..e3bbdf22ddf 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "botocore";
- version = "1.12.152"; # N.B: if you change this, change boto3 and awscli to a matching version
+ version = "1.12.160"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
- sha256 = "1pj9k3x82f9cgr0flg0m5n6fh8rkxy3c0z1qgx5nqvyidswn793r";
+ sha256 = "18jhc6v2xcd20hlq69ykapmxgd9k7szjbp1ndmgxi4g8w37fvcqp";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/django_silk/default.nix b/pkgs/development/python-modules/django_silk/default.nix
index e8c44efdc40..6bb2b1d43f1 100644
--- a/pkgs/development/python-modules/django_silk/default.nix
+++ b/pkgs/development/python-modules/django_silk/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
-, fetchPypi
+, python
+, fetchFromGitHub
, django
, pygments
, simplejson
@@ -12,26 +13,50 @@
, pytz
, pillow
, mock
+, gprof2dot
+, freezegun
+, contextlib2
+, networkx
+, pydot
+, factory_boy
}:
buildPythonPackage rec {
pname = "django-silk";
version = "3.0.2";
- src = fetchPypi {
- inherit pname version;
- sha256 = "8dd5b78531360bd8c3d571384f9f4f82ef03e1764e30dd4621c5638f5c973a1d";
+ # pypi tarball doesn't include test project
+ src = fetchFromGitHub {
+ owner = "jazzband";
+ repo = "django-silk";
+ rev = version;
+ sha256 = "1fbaafc2gx01gscdalp6hj6bz4b0cmq59lgmvsydw7jkds4mps7c";
};
-
- doCheck = false;
+ # "test_time_taken" tests aren't suitable for reproducible execution, but django's
+ # test runner doesn't have an easy way to ignore tests - so instead prevent it from picking
+ # them up as tests
+ postPatch = ''
+ substituteInPlace project/tests/test_silky_profiler.py \
+ --replace "def test_time_taken" "def _test_time_taken"
+ '';
buildInputs = [ mock ];
- propagatedBuildInputs = [ django pygments simplejson dateutil requests sqlparse jinja2 autopep8 pytz pillow ];
+ propagatedBuildInputs = [
+ django pygments simplejson dateutil requests
+ sqlparse jinja2 autopep8 pytz pillow gprof2dot
+ ];
+
+ checkInputs = [ freezegun contextlib2 networkx pydot factory_boy ];
+ checkPhase = ''
+ cd project
+ DB=sqlite3 DB_NAME=db.sqlite3 ${python.interpreter} manage.py test
+ '';
meta = with stdenv.lib; {
description = "Silky smooth profiling for the Django Framework";
homepage = https://github.com/mtford90/silk;
license = licenses.mit;
+ maintainers = with maintainers; [ ris ];
};
}
diff --git a/pkgs/development/python-modules/gprof2dot/default.nix b/pkgs/development/python-modules/gprof2dot/default.nix
index ed48842496c..48abf5058df 100644
--- a/pkgs/development/python-modules/gprof2dot/default.nix
+++ b/pkgs/development/python-modules/gprof2dot/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, buildPythonApplication }:
+{ lib, fetchFromGitHub, buildPythonApplication, python, graphviz }:
buildPythonApplication {
name = "gprof2dot-2017-09-19";
@@ -10,11 +10,13 @@ buildPythonApplication {
sha256 = "1b5wvjv5ykbhz7aix7l3y7mg1hxi0vgak4a49gr92sdlz8blj51v";
};
+ checkInputs = [ graphviz ];
+ checkPhase = "${python.interpreter} tests/test.py";
+
meta = with lib; {
homepage = https://github.com/jrfonseca/gprof2dot;
description = "Python script to convert the output from many profilers into a dot graph";
license = licenses.lgpl3Plus;
- platforms = platforms.linux;
maintainers = [ maintainers.pmiddend ];
};
}
diff --git a/pkgs/development/python-modules/python-redis-lock/default.nix b/pkgs/development/python-modules/python-redis-lock/default.nix
new file mode 100644
index 00000000000..65c5e08d934
--- /dev/null
+++ b/pkgs/development/python-modules/python-redis-lock/default.nix
@@ -0,0 +1,36 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, redis
+, pytest
+, process-tests
+, pkgs
+, withDjango ? false, django_redis
+}:
+
+buildPythonPackage rec {
+ pname = "python-redis-lock";
+ version = "3.3.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "5316d473ce6ce86a774b9f9c110d84c3a9bd1a2abfda5d99e9c0c8a872a8e6d6";
+ };
+
+ checkInputs = [ pytest process-tests pkgs.redis ];
+
+ checkPhase = ''
+ pytest tests/
+ '';
+
+ propagatedBuildInputs = [ redis ]
+ ++ stdenv.lib.optional withDjango django_redis;
+
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/ionelmc/python-redis-lock";
+ license = licenses.bsd2;
+ description = "Lock context manager implemented via redis SETNX/BLPOP";
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/spglib/default.nix b/pkgs/development/python-modules/spglib/default.nix
index 7428e6e9e91..73af5d7b00c 100644
--- a/pkgs/development/python-modules/spglib/default.nix
+++ b/pkgs/development/python-modules/spglib/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, numpy, nose, pyyaml }:
+{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, numpy, nose, pyyaml }:
buildPythonPackage rec {
pname = "spglib";
@@ -9,6 +9,15 @@ buildPythonPackage rec {
sha256 = "15b02b74c0f06179bc3650c43a710a5200abbba387c6eda3105bfd9236041443";
};
+ patches = [
+ (fetchpatch {
+ name = "fix-assertions.patch";
+ url = https://github.com/atztogo/spglib/commit/d57070831585a6f02dec0a31d25b375ba347798c.patch;
+ stripLen = 1;
+ sha256 = "0crmkc498rbrawiy9zbl39qis2nmsbfr4s6kk6k3zhdy8z2ppxw7";
+ })
+ ];
+
propagatedBuildInputs = [ numpy ];
checkInputs = [ nose pyyaml ];
diff --git a/pkgs/development/python-modules/strategies/default.nix b/pkgs/development/python-modules/strategies/default.nix
new file mode 100644
index 00000000000..2b03ddcf9c9
--- /dev/null
+++ b/pkgs/development/python-modules/strategies/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi
+, multipledispatch, toolz
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "strategies";
+ version = "0.2.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "02i4ydrs9k61p8iv2vl2akks8p9gc88rw8031wlwb1zqsyjmb328";
+ };
+
+ propagatedBuildInputs = [ multipledispatch toolz ];
+ checkInputs = [ pytest ];
+
+ meta = {
+ description = "A Python library for control flow programming";
+ homepage = "https://github.com/logpy/strategies";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ suhr ];
+ };
+}
diff --git a/pkgs/development/tools/detect-secrets/default.nix b/pkgs/development/tools/detect-secrets/default.nix
index 76bdb6bb6ba..6e9e1596b13 100644
--- a/pkgs/development/tools/detect-secrets/default.nix
+++ b/pkgs/development/tools/detect-secrets/default.nix
@@ -2,14 +2,14 @@
buildPythonApplication rec {
pname = "detect-secrets";
- version = "0.11.4";
+ version = "0.12.4";
# PyPI tarball doesn't ship tests
src = fetchFromGitHub {
owner = "Yelp";
repo = "detect-secrets";
rev = "v${version}";
- sha256 = "1ydigridkjirrfhyfr8barw0yrd4hw6w0k9g7mbd0gdqng6gpmgc";
+ sha256 = "01y5xd0irxxib4wnf5834gwa7ibb81h5y4dl8b26gyzgvm5zfpk1";
};
propagatedBuildInputs = [ pyyaml ]
diff --git a/pkgs/development/tools/git-quick-stats/default.nix b/pkgs/development/tools/git-quick-stats/default.nix
new file mode 100644
index 00000000000..3408b960889
--- /dev/null
+++ b/pkgs/development/tools/git-quick-stats/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchFromGitHub }:
+stdenv.mkDerivation rec {
+ name = "git-quick-stats-${version}";
+ version = "2.0.8";
+ src = fetchFromGitHub {
+ repo = "git-quick-stats";
+ owner = "arzzen";
+ rev = "${version}";
+ sha256 = "1px1sk7b6mjnbclsr1jn33m9k4wd8wqyw4d6w1rgj0ii29lhzmqi";
+ };
+ PREFIX = builtins.placeholder "out";
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/arzzen/git-quick-stats";
+ description = "A simple and efficient way to access various statistics in git repository";
+ platforms = platforms.all;
+ maintainers = [ maintainers.kmein ];
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix
index 97657075d46..05e0b1cd96f 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -29,6 +29,11 @@ stdenv.mkDerivation rec {
sha256 = "0bnpzz0rl672xg5547q5qck2sxi6cnyixmk8bbb4gifw17ipwbw0";
};
+ postPatch = if stdenv.isDarwin then ''
+ substituteInPlace gdb/darwin-nat.c \
+ --replace '#include "bfd/mach-o.h"' '#include "mach-o.h"'
+ '' else null;
+
patches = [
./debug-info-from-env.patch
] ++ stdenv.lib.optionals stdenv.isDarwin [
diff --git a/pkgs/os-specific/linux/audit/default.nix b/pkgs/os-specific/linux/audit/default.nix
index d05eaf4b84e..4a569e1e1c3 100644
--- a/pkgs/os-specific/linux/audit/default.nix
+++ b/pkgs/os-specific/linux/audit/default.nix
@@ -1,12 +1,14 @@
{
stdenv, buildPackages, fetchurl, fetchpatch,
+ runCommand,
+ autoconf, automake, libtool,
enablePython ? false, python ? null,
}:
assert enablePython -> python != null;
stdenv.mkDerivation rec {
- name = "audit-2.8.5";
+ name = "audit-2.8.5"; # at the next release, remove the patches below!
src = fetchurl {
url = "https://people.redhat.com/sgrubb/audit/${name}.tar.gz";
@@ -16,6 +18,8 @@ stdenv.mkDerivation rec {
outputs = [ "bin" "dev" "out" "man" ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
+ nativeBuildInputs = stdenv.lib.optionals stdenv.hostPlatform.isMusl
+ [ autoconf automake libtool ];
buildInputs = stdenv.lib.optional enablePython python;
configureFlags = [
@@ -29,17 +33,24 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ # TODO: Remove the musl patches when
+ # https://github.com/linux-audit/audit-userspace/pull/25
+ # is available with the next release.
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl [
- (fetchpatch {
- url = "https://git.alpinelinux.org/cgit/aports/plain/main/audit/0002-auparse-remove-use-of-rawmemchr.patch?id=3e57180fdf3f90c30a25aea44f57846efc93a696";
- name = "0002-auparse-remove-use-of-rawmemchr.patch";
- sha256 = "1caaqbfgb2rq3ria5bz4n8x30ihgihln6w9w9a46k62ba0wh9rkz";
- })
- (fetchpatch {
- url = "https://git.alpinelinux.org/cgit/aports/plain/main/audit/0003-all-get-rid-of-strndupa.patch?id=3e57180fdf3f90c30a25aea44f57846efc93a696";
- name = "0003-all-get-rid-of-strndupa.patch";
- sha256 = "1ddrm6a0ijrf7caw1wpw2kkbjp2lkxkmc16v51j5j7dvdalc6591";
- })
+ (
+ let patch = fetchpatch {
+ url = "https://github.com/linux-audit/audit-userspace/commit/d579a08bb1cde71f939c13ac6b2261052ae9f77e.patch";
+ name = "Add-substitue-functions-for-strndupa-rawmemchr.patch";
+ sha256 = "015bvzflg1s1k5viap30nznlpjj44a66khyc8yq0waa68qwvdlsd";
+ };
+ in
+ runCommand "Add-substitue-functions-for-strndupa-rawmemchr.patch-fix-copyright-merge-conflict" {} ''
+ cp ${patch} $out
+ substituteInPlace $out --replace \
+ '-* Copyright (c) 2007-09,2011-16,2018 Red Hat Inc., Durham, North Carolina.' \
+ '-* Copyright (c) 2007-09,2011-16 Red Hat Inc., Durham, North Carolina.'
+ ''
+ )
];
prePatch = ''
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index b8dcaaeb5af..8c39bc9ee1b 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "4.14.123";
+ version = "4.14.124";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "11avfbkd0bsv3ynr4sxgm2q9980c5mglz67fpk4qlf6ydfsqrx95";
+ sha256 = "1fdwbj26pcnl23n6yw55j5yif6fkka7kvkdh31c8wczc3rw5h3bx";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index abbf180b3f3..bfe5fc792d5 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "4.19.48";
+ version = "4.19.49";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1ylkd30hg2skfxl12g45lqm48b732faf41d68513i3nc217xpl01";
+ sha256 = "1kdv72w9x72z126dycdqm4i5hvmy0njaywb2a6jvq39wjyrj1ncj";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.1.nix b/pkgs/os-specific/linux/kernel/linux-5.1.nix
index 9e2dca09e59..788e4733545 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.1.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.1.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "5.1.7";
+ version = "5.1.8";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "19pkmnvpjacrssyyjhjlz8cqi8fsn3y293yyvc5bv6dpy96x0ih2";
+ sha256 = "1v56hzzb147mdnhajkgcjwjrmd7qyayky7bprjb3maz2qvy4y5nh";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix
index 3b71aae1d82..0db75d4fdac 100644
--- a/pkgs/os-specific/linux/kernel/linux-testing.nix
+++ b/pkgs/os-specific/linux/kernel/linux-testing.nix
@@ -1,13 +1,13 @@
{ stdenv, buildPackages, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
buildLinux (args // rec {
- version = "5.2-rc3";
- modDirVersion = "5.2.0-rc3";
+ version = "5.2-rc4";
+ modDirVersion = "5.2.0-rc4";
extraMeta.branch = "5.2";
src = fetchurl {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
- sha256 = "1hray0c7lgnsvvgfwff82d2ng03rn3dlljm04sk1w8nlwyphfmj8";
+ sha256 = "0j5vvmbndmjyal3sd98a9lr0x6lxarbz46rgp197f6sf628gxahq";
};
# Should the testing kernels ever be built on Hydra?
diff --git a/pkgs/servers/monitoring/sensu-go/default.nix b/pkgs/servers/monitoring/sensu-go/default.nix
new file mode 100644
index 00000000000..21f731a0e3e
--- /dev/null
+++ b/pkgs/servers/monitoring/sensu-go/default.nix
@@ -0,0 +1,60 @@
+{ buildGoPackage, fetchFromGitHub, lib }:
+
+let
+ generic = { subPackages, pname, postInstall ? "" }:
+ buildGoPackage rec {
+ inherit pname;
+ version = "5.9.0";
+ shortRev = "078f625"; # for internal version info
+
+ goPackagePath = "github.com/sensu/sensu-go";
+
+ src = fetchFromGitHub {
+ owner = "sensu";
+ repo = "sensu-go";
+ rev = version;
+ sha256 = "1rivnq7m4p44zz1fl46j06aakb0yjsjb3mjqyfq4r0235xr01ajw";
+ };
+
+ inherit subPackages postInstall;
+
+ buildFlagsArray = let
+ versionPkg = "github.com/sensu/sensu-go/version";
+ in ''
+ -ldflags=
+ -X ${versionPkg}.Version=${version}
+ -X ${versionPkg}.BuildSHA=${shortRev}
+ '';
+
+ meta = {
+ homepage = https://sensu.io;
+ description = "Open source monitoring tool for ephemeral infrastructure & distributed applications";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ thefloweringash ];
+ };
+ };
+in
+{
+ sensu-go-cli = generic {
+ pname = "sensu-go-cli";
+ subPackages = [ "cmd/sensuctl" ];
+ postInstall = ''
+ mkdir -p \
+ "''${!outputBin}/share/bash-completion/completions" \
+ "''${!outputBin}/share/zsh/site-functions"
+
+ ''${!outputBin}/bin/sensuctl completion bash > ''${!outputBin}/share/bash-completion/completions/sensuctl
+ ''${!outputBin}/bin/sensuctl completion zsh > ''${!outputBin}/share/zsh/site-functions/_sensuctl
+ '';
+ };
+
+ sensu-go-backend = generic {
+ pname = "sensu-go-backend";
+ subPackages = [ "cmd/sensu-backend" ];
+ };
+
+ sensu-go-agent = generic {
+ pname = "sensu-go-agent";
+ subPackages = [ "cmd/sensu-agent" ];
+ };
+}
diff --git a/pkgs/servers/pulseaudio/default.nix b/pkgs/servers/pulseaudio/default.nix
index 66db4f32eea..13b5d4c3c9f 100644
--- a/pkgs/servers/pulseaudio/default.nix
+++ b/pkgs/servers/pulseaudio/default.nix
@@ -4,7 +4,6 @@
, avahi, libjack2, libasyncns, lirc, dbus
, sbc, bluez5, udev, openssl, fftwFloat
, speexdsp, systemd, webrtc-audio-processing
-, fetchpatch
, x11Support ? false
@@ -60,19 +59,21 @@ stdenv.mkDerivation rec {
++ lib.optionals bluetoothSupport [ bluez5 sbc ]
++ lib.optional remoteControlSupport lirc
++ lib.optional zeroconfSupport avahi
- );
+ );
- patches = [
- # The following two patches fix alsalib headers move, remove after the next release
- (fetchpatch {
- url = "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/993d3fd89e5611997f1e165bf03edefb0204b0a4.patch";
- sha256 = "17icnf8026947j1dqw4k16f91vy6zyg7q41zv2j6pxh9fncb1s71";
- })
- (fetchpatch {
- url = "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/b89d33bb182c42db5ad3987b0e91b7bf62f421e8.patch";
- sha256 = "0jccpc0dgkb0v4xrkyca2pm2k4i6pvahs9bq4hbg34173p23g5nb";
- })
- ];
+ patches = [
+ # The following two patches fix alsalib headers move, remove after the next release
+ (fetchpatch {
+ name = "alsa-asoundlib-include.patch";
+ url = "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/993d3fd89e5611997f1e165bf03edefb0204b0a4.patch";
+ sha256 = "17icnf8026947j1dqw4k16f91vy6zyg7q41zv2j6pxh9fncb1s71";
+ })
+ (fetchpatch {
+ name = "alsa-use-case-include.patch";
+ url = "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/b89d33bb182c42db5ad3987b0e91b7bf62f421e8.patch";
+ sha256 = "0jccpc0dgkb0v4xrkyca2pm2k4i6pvahs9bq4hbg34173p23g5nb";
+ })
+ ];
preConfigure = ''
# Performs and autoreconf
@@ -130,19 +131,6 @@ stdenv.mkDerivation rec {
--prefix GIO_EXTRA_MODULES : "${lib.getLib gnome3.dconf}/lib/gio/modules"
'';
- patches = [
- (fetchpatch {
- name = "alsa-asoundlib-include.patch";
- url = "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/993d3fd89e5611997f1e165bf03edefb0204b0a4.patch";
- sha256 = "17icnf8026947j1dqw4k16f91vy6zyg7q41zv2j6pxh9fncb1s71";
- })
- (fetchpatch {
- name = "alsa-use-case-include.patch";
- url = "https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/b89d33bb182c42db5ad3987b0e91b7bf62f421e8.patch";
- sha256 = "0jccpc0dgkb0v4xrkyca2pm2k4i6pvahs9bq4hbg34173p23g5nb";
- })
- ];
-
meta = {
description = "Sound server for POSIX and Win32 systems";
homepage = http://www.pulseaudio.org/;
diff --git a/pkgs/servers/sql/postgresql/ext/pgroonga.nix b/pkgs/servers/sql/postgresql/ext/pgroonga.nix
index 114c16d297b..db9cafd7af5 100644
--- a/pkgs/servers/sql/postgresql/ext/pgroonga.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgroonga.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "pgroonga";
- version = "2.1.9";
+ version = "2.2.0";
src = fetchurl {
url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz";
- sha256 = "15bix7gqi45nf1ah0sxmlg3aqqrkacn19slp43jiirfnpp74dbnw";
+ sha256 = "1cankcprikx8nf72yg4h8542gqqlfgww6d63kg7l8l8sz962d28b";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix
index 1d6ea45c9c5..efafbb3692e 100644
--- a/pkgs/tools/X11/xpra/default.nix
+++ b/pkgs/tools/X11/xpra/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, callPackage, substituteAll, python3, pkgconfig
, xorg, gtk3, glib, pango, cairo, gdk_pixbuf, atk
, wrapGAppsHook, xorgserver, getopt, xauth, utillinux, which
-, ffmpeg, x264, libvpx, libwebp
+, ffmpeg_4, x264, libvpx, libwebp, x265
, libfakeXinerama
, gst_all_1, pulseaudio, gobject-introspection
, pam }:
@@ -14,11 +14,11 @@ let
xf86videodummy = callPackage ./xf86videodummy { };
in buildPythonApplication rec {
pname = "xpra";
- version = "2.3.4";
+ version = "2.5";
src = fetchurl {
url = "https://xpra.org/src/${pname}-${version}.tar.xz";
- sha256 = "0wa3kx54himy3i1b2801hlzfilh3cf4kjk40k1cjl0ds28m5hija";
+ sha256 = "0q6c7ijgpp2wk6jlh0pzqki1w60i36wyl2zfwkg0gpdh40ypab3x";
};
patches = [
@@ -28,7 +28,11 @@ in buildPythonApplication rec {
})
];
- nativeBuildInputs = [ pkgconfig gobject-introspection wrapGAppsHook ];
+ postPatch = ''
+ substituteInPlace setup.py --replace '/usr/include/security' '${pam}/include/security'
+ '';
+
+ nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = with xorg; [
libX11 xorgproto libXrender libXi
libXtst libXfixes libXcomposite libXdamage
@@ -36,9 +40,9 @@ in buildPythonApplication rec {
] ++ [
cython
- pango cairo gdk_pixbuf atk gtk3 glib
+ pango cairo gdk_pixbuf atk.out gtk3 glib
- ffmpeg libvpx x264 libwebp
+ ffmpeg_4 libvpx x264 libwebp x265
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
@@ -47,11 +51,13 @@ in buildPythonApplication rec {
gst_all_1.gst-libav
pam
+ gobject-introspection
];
-
propagatedBuildInputs = with python3.pkgs; [
pillow rencode pycrypto cryptography pycups lz4 dbus-python
- netifaces numpy websockify pygobject3 pycairo gst-python pam
+ netifaces numpy pygobject3 pycairo gst-python pam
+ pyopengl paramiko opencv python-uinput pyxdg
+ ipaddress idna
];
NIX_CFLAGS_COMPILE = [
@@ -64,6 +70,9 @@ in buildPythonApplication rec {
"--without-strict"
"--with-gtk3"
"--without-gtk2"
+ # Override these, setup.py checks for headers in /usr/* paths
+ "--with-pam"
+ "--with-vsock"
];
preFixup = ''
@@ -76,6 +85,8 @@ in buildPythonApplication rec {
doCheck = false;
+ enableParallelBuilding = true;
+
passthru = { inherit xf86videodummy; };
meta = {
@@ -85,8 +96,6 @@ in buildPythonApplication rec {
description = "Persistent remote applications for X";
platforms = platforms.linux;
license = licenses.gpl2;
- # https://github.com/NixOS/nixpkgs/pull/48872#issuecomment-433559636
- broken = true;
maintainers = with maintainers; [ tstrobel offline numinit ];
};
}
diff --git a/pkgs/tools/X11/xpra/fix-paths.patch b/pkgs/tools/X11/xpra/fix-paths.patch
index c50ec28c35e..ac8107235be 100644
--- a/pkgs/tools/X11/xpra/fix-paths.patch
+++ b/pkgs/tools/X11/xpra/fix-paths.patch
@@ -9,25 +9,26 @@
cython_add(Extension("xpra.client.gtk3.cairo_workaround",
["xpra/client/gtk3/cairo_workaround.pyx"],
**pkgconfig(pycairo)
---- a/xpra/client/gtk3/cairo_workaround.pyx
-+++ b/xpra/client/gtk3/cairo_workaround.pyx
-@@ -65,7 +65,7 @@
- void cairo_surface_flush (cairo_surface_t *surface)
- void cairo_surface_mark_dirty (cairo_surface_t *surface)
-
--cdef extern from "pycairo/pycairo.h":
-+cdef extern from "py3cairo.h":
- ctypedef struct Pycairo_CAPI_t:
- pass
- ctypedef struct PycairoSurface:
+@@ -2363,10 +2363,7 @@
+ v4l2_pkgconfig = pkgconfig()
+ #fuly warning: cython makes this difficult,
+ #we have to figure out if "device_caps" exists in the headers:
+- ENABLE_DEVICE_CAPS = False
+- if os.path.exists("/usr/include/linux/videodev2.h"):
+- hdata = open("/usr/include/linux/videodev2.h").read()
+- ENABLE_DEVICE_CAPS = hdata.find("device_caps")>=0
++ ENABLE_DEVICE_CAPS = True
+ kwargs = {"ENABLE_DEVICE_CAPS" : ENABLE_DEVICE_CAPS}
+ make_constants("xpra", "codecs", "v4l2", "constants", **kwargs)
+ cython_add(Extension("xpra.codecs.v4l2.pusher",
--- a/xpra/x11/bindings/keyboard_bindings.pyx
+++ b/xpra/x11/bindings/keyboard_bindings.pyx
@@ -19,7 +19,7 @@
DEF PATH_MAX = 1024
- DEF DFLT_XKB_RULES_FILE = "base"
--DEF DFLT_XKB_CONFIG_ROOT = "/usr/share/X11/xkb"
-+DEF DFLT_XKB_CONFIG_ROOT = "@xkeyboardconfig@/share/X11/xkb"
+ DEF DFLT_XKB_RULES_FILE = b"base"
+-DEF DFLT_XKB_CONFIG_ROOT = b"/usr/share/X11/xkb"
++DEF DFLT_XKB_CONFIG_ROOT = b"@xkeyboardconfig@/share/X11/xkb"
###################################
# Headers, python magic
diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix
index 87805b25a1c..44eb3731d37 100644
--- a/pkgs/tools/admin/awscli/default.nix
+++ b/pkgs/tools/admin/awscli/default.nix
@@ -33,11 +33,11 @@ let
in py.pkgs.buildPythonApplication rec {
pname = "awscli";
- version = "1.16.162"; # N.B: if you change this, change botocore to a matching version too
+ version = "1.16.170"; # N.B: if you change this, change botocore to a matching version too
src = py.pkgs.fetchPypi {
inherit pname version;
- sha256 = "1v5n1klzkysshp73mhrminvkqqqw9mskdaw7xjhpqfrvcdnp60vv";
+ sha256 = "12kh62imdfy8whvqzdrmdq4zw70gj1g3smqldf4lqpjfzss7cy92";
};
# No tests included
diff --git a/pkgs/tools/backup/grab-site/default.nix b/pkgs/tools/backup/grab-site/default.nix
index 2947c5fc1b4..e30b0af45a5 100644
--- a/pkgs/tools/backup/grab-site/default.nix
+++ b/pkgs/tools/backup/grab-site/default.nix
@@ -1,14 +1,14 @@
{ stdenv, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
- version = "2.1.15";
+ version = "2.1.16";
name = "grab-site-${version}";
src = fetchFromGitHub {
rev = "${version}";
owner = "ArchiveTeam";
repo = "grab-site";
- sha256 = "1h3ajsj1c2wlxji1san97vmjd9d97dv0rh0jw1p77irkcvhzfpj8";
+ sha256 = "01n3mi9q593sd2bbmbbp5pn2c3pkwj7iqmy02zbh8ciqskraja4z";
};
propagatedBuildInputs = with python3Packages; [
diff --git a/pkgs/tools/graphics/grim/default.nix b/pkgs/tools/graphics/grim/default.nix
index 813c1c98780..b84f498fa2f 100644
--- a/pkgs/tools/graphics/grim/default.nix
+++ b/pkgs/tools/graphics/grim/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, cairo, libjpeg, meson, ninja, wayland, pkgconfig, wayland-protocols }:
stdenv.mkDerivation rec {
- name = "grim-${version}";
- version = "1.1";
+ pname = "grim";
+ version = "1.2.0";
src = fetchFromGitHub {
owner = "emersion";
- repo = "grim";
+ repo = pname;
rev = "v${version}";
- sha256 = "1bcvkggqszcwy6hg8g4mch3yr25ic0baafbd90af5s5mrhrjxxxz";
+ sha256 = "0brljl4zfbn5mh9hkfrfkvd27c5y9vdkgap9r1hrfy9r1x20sskn";
};
nativeBuildInputs = [
diff --git a/pkgs/tools/networking/shadowfox/default.nix b/pkgs/tools/networking/shadowfox/default.nix
index b22a3f464d3..8a2dee19b95 100644
--- a/pkgs/tools/networking/shadowfox/default.nix
+++ b/pkgs/tools/networking/shadowfox/default.nix
@@ -2,27 +2,21 @@
buildGoModule rec {
pname = "shadowfox";
- version = "2.0.1";
+ version = "2.2.0";
src = fetchFromGitHub {
owner = "SrKomodo";
repo = "shadowfox-updater";
rev = "v${version}";
- sha256 = "0j8ljnx281a5nwd3zpw7b25ndsxc26b52glk2hqhm5fh08f9w0d8";
+ sha256 = "125mw70jidbp436arhv77201jdp6mpgqa2dzmrpmk55f9bf29sg6";
};
goPackagePath = "github.com/SrKomodo/shadowfox-updater";
- modSha256 = "0anxrff09r5aw3a11iph0gigmcbmpfczm8him6ly57ywfzc5c850";
+ modSha256 = "0hcc87mzacqwbw10l49kx0sxl4mivdr88c40wh6hdfvrbam2w86r";
buildFlags = "--tags release";
- postInstall = ''
- # Contains compiler package only used by projects CI, and buildGoModule
- # installs all binaries by default. So we remove this again.
- rm $out/bin/compiler
- '';
-
meta = with stdenv.lib; {
description = ''
This project aims at creating a universal dark theme for Firefox while
diff --git a/pkgs/tools/security/shc/default.nix b/pkgs/tools/security/shc/default.nix
index 42a4b04ddfe..e3f5f72c141 100644
--- a/pkgs/tools/security/shc/default.nix
+++ b/pkgs/tools/security/shc/default.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
name = "shc-${version}";
- version = "4.0.1";
+ version = "4.0.2";
rev = "${version}";
src = fetchFromGitHub {
inherit rev;
owner = "neurobin";
repo = "shc";
- sha256 = "03f5hq1wkwfcm6b1q9956zqd05l2am91ij8lxbc8akiwz14dmkw7";
+ sha256 = "1vd9dldm6h234awn5fhpgq4lb85ylcawr2p2108332ffy70kvdix";
};
meta = with stdenv.lib; {
diff --git a/pkgs/tools/typesetting/sile/default.nix b/pkgs/tools/typesetting/sile/default.nix
index 71c2131e57d..966d657ae7d 100644
--- a/pkgs/tools/typesetting/sile/default.nix
+++ b/pkgs/tools/typesetting/sile/default.nix
@@ -1,5 +1,5 @@
{ stdenv, darwin, fetchurl, makeWrapper, pkgconfig
-, harfbuzz, icu, lpeg, luaexpat, lua-zlib, luafilesystem, luasocket, luasec
+, harfbuzz, icu
, fontconfig, lua, libiconv
, makeFontsConf, gentium, gentium-book-basic, dejavu_fonts
}:
@@ -7,13 +7,7 @@
with stdenv.lib;
let
-
- libs = [ lpeg luaexpat lua-zlib luafilesystem luasocket luasec ];
- getPath = lib : type : "${lib}/lib/lua/${lua.luaversion}/?.${type};${lib}/share/lua/${lua.luaversion}/?.${type}";
- getLuaPath = lib : getPath lib "lua";
- getLuaCPath = lib : getPath lib "so";
- luaPath = concatStringsSep ";" (map getLuaPath libs);
- luaCPath = concatStringsSep ";" (map getLuaCPath libs);
+ luaEnv = lua.withPackages(ps: with ps;[ lpeg luaexpat lua-zlib luafilesystem luasocket luasec]);
in
@@ -27,8 +21,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [pkgconfig makeWrapper];
- buildInputs = [ harfbuzz icu lua fontconfig libiconv ]
- ++ libs
+ buildInputs = [ harfbuzz icu fontconfig libiconv luaEnv ]
++ optional stdenv.isDarwin darwin.apple_sdk.frameworks.AppKit
;
@@ -38,9 +31,6 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = optionalString stdenv.isDarwin "-framework AppKit";
- LUA_PATH = luaPath;
- LUA_CPATH = luaCPath;
-
FONTCONFIG_FILE = makeFontsConf {
fontDirectories = [
gentium
@@ -60,10 +50,6 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
- wrapProgram $out/bin/sile \
- --set LUA_PATH "${luaPath};" \
- --set LUA_CPATH "${luaCPath};" \
-
install -D -t $out/share/doc/sile documentation/*.pdf
'';
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6a9dbd24e99..536fd2ce9e7 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2525,6 +2525,8 @@ in
docbook2mdoc = callPackage ../tools/misc/docbook2mdoc { };
+ docear = callPackage ../applications/office/docear { };
+
dockbarx = callPackage ../applications/misc/dockbarx { };
dog = callPackage ../tools/system/dog { };
@@ -5855,9 +5857,7 @@ in
silc_server = callPackage ../servers/silc-server { };
- sile = callPackage ../tools/typesetting/sile {
- inherit (lua52Packages) lua luaexpat lua-zlib luafilesystem lpeg luasocket luasec;
- };
+ sile = callPackage ../tools/typesetting/sile { };
silver-searcher = callPackage ../tools/text/silver-searcher { };
@@ -8389,8 +8389,8 @@ in
pachyderm = callPackage ../applications/networking/cluster/pachyderm { };
- php = php72;
- phpPackages = php72Packages;
+ php = php73;
+ phpPackages = php73Packages;
php71Packages = recurseIntoAttrs (callPackage ./php-packages.nix {
php = php71;
@@ -8425,7 +8425,7 @@ in
php72
php73;
- php-embed = php72-embed;
+ php-embed = php73-embed;
php71-embed = php71.override {
config.php.embed = true;
@@ -8442,7 +8442,7 @@ in
config.php.apxs2 = false;
};
- php-unit = php72-unit;
+ php-unit = php73-unit;
php71-unit = php71.override {
config.php.embed = true;
@@ -14747,6 +14747,11 @@ in
sensu = callPackage ../servers/monitoring/sensu { };
+ inherit (callPackages ../servers/monitoring/sensu-go { })
+ sensu-go-agent
+ sensu-go-backend
+ sensu-go-cli;
+
uchiwa = callPackage ../servers/monitoring/uchiwa { };
shishi = callPackage ../servers/shishi {
@@ -16080,6 +16085,8 @@ in
adapta-backgrounds = callPackage ../data/misc/adapta-backgrounds { };
+ adementary-theme = callPackage ../data/themes/adementary { };
+
agave = callPackage ../data/fonts/agave { };
aileron = callPackage ../data/fonts/aileron { };
@@ -16658,8 +16665,6 @@ in
termtekst = callPackage ../misc/emulators/termtekst { };
- tetra-gtk-theme = callPackage ../data/themes/tetra { };
-
tex-gyre = callPackages ../data/fonts/tex-gyre { };
tex-gyre-math = callPackages ../data/fonts/tex-gyre-math { };
@@ -18099,6 +18104,8 @@ in
python = python27;
};
+ git-quick-stats = callPackage ../development/tools/git-quick-stats {};
+
git-review = callPackage ../applications/version-management/git-review { };
gitolite = callPackage ../applications/version-management/gitolite { };
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 62a48c52d70..4e7f134c9d3 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -1157,6 +1157,20 @@ let
};
};
+ Carton = buildPerlPackage rec {
+ name = "Carton-v1.0.34";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/${name}.tar.gz";
+ sha256 = "77d42b92732bcfc18a59d341e56ce476205b1c4d380eab3a07224f5745c23e45";
+ };
+ propagatedBuildInputs = [ ClassTiny MenloLegacy ModuleCPANfile PathTiny TryTiny ];
+ meta = {
+ homepage = https://github.com/perl-carton/carton;
+ description = "Perl module dependency manager (aka Bundler for Perl)";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
CatalystActionRenderView = buildPerlPackage rec {
name = "Catalyst-Action-RenderView-0.16";
src = fetchurl {
@@ -2779,6 +2793,21 @@ let
};
};
+ CPANCommonIndex = buildPerlPackage rec {
+ name = "CPAN-Common-Index-0.010";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz";
+ sha256 = "c43ddbb22fd42b06118fe6357f53700fbd77f531ba3c427faafbf303cbf4eaf0";
+ };
+ buildInputs = [ TestDeep TestFailWarnings TestFatal ];
+ propagatedBuildInputs = [ CPANDistnameInfo ClassTiny TieHandleOffset URI ];
+ meta = {
+ homepage = https://github.com/Perl-Toolchain-Gang/CPAN-Common-Index;
+ description = "Common library for searching CPAN modules, authors and distributions";
+ license = stdenv.lib.licenses.asl20;
+ };
+ };
+
CPANDistnameInfo = buildPerlPackage rec {
name = "CPAN-DistnameInfo-0.12";
src = fetchurl {
@@ -7566,6 +7595,20 @@ let
};
};
+ HTTPTinyish = buildPerlPackage rec {
+ name = "HTTP-Tinyish-0.15";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/${name}.tar.gz";
+ sha256 = "5d65f0ee20a9e4744acdb3ef12edae78c121f53dcbc9cf00867c5725c4513aa5";
+ };
+ propagatedBuildInputs = [ FileWhich IPCRun3 ];
+ meta = {
+ homepage = https://github.com/miyagawa/HTTP-Tinyish;
+ description = "HTTP::Tiny compatible HTTP client wrappers";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
iCalParser = buildPerlPackage rec {
name = "iCal-Parser-1.21";
src = fetchurl {
@@ -9608,6 +9651,34 @@ let
};
};
+ Menlo = buildPerlPackage rec {
+ name = "Menlo-1.9019";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/${name}.tar.gz";
+ sha256 = "3b573f68e7b3a36a87c860be258599330fac248b518854dfb5657ac483dca565";
+ };
+ propagatedBuildInputs = [ CPANCommonIndex CPANDistnameInfo CPANMetaCheck CaptureTiny ClassTiny ExtUtilsConfig ExtUtilsHelpers ExtUtilsInstallPaths FileWhich Filepushd HTTPTinyish ModuleCPANfile ParsePMFile StringShellQuote URI Win32ShellQuote locallib ];
+ meta = {
+ homepage = https://github.com/miyagawa/cpanminus;
+ description = "A CPAN client";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
+ MenloLegacy = buildPerlPackage rec {
+ name = "Menlo-Legacy-1.9022";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/${name}.tar.gz";
+ sha256 = "a6acac3fee318a804b439de54acbc7c27f0b44cfdad8551bbc9cd45986abc201";
+ };
+ propagatedBuildInputs = [ Menlo ];
+ meta = {
+ homepage = https://github.com/miyagawa/cpanminus;
+ description = "Legacy internal and client support for Menlo";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
MetaBuilder = buildPerlModule {
name = "Meta-Builder-0.004";
src = fetchurl {
@@ -16884,6 +16955,19 @@ let
};
};
+ TieHandleOffset = buildPerlPackage rec {
+ name = "Tie-Handle-Offset-0.004";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz";
+ sha256 = "ee9f39055dc695aa244a252f56ffd37f8be07209b337ad387824721206d2a89e";
+ };
+ meta = {
+ homepage = https://github.com/dagolden/tie-handle-offset;
+ description = "Tied handle that hides the beginning of a file";
+ license = stdenv.lib.licenses.asl20;
+ };
+ };
+
TieHashIndexed = buildPerlPackage {
name = "Tie-Hash-Indexed-0.05";
src = fetchurl {
@@ -17510,6 +17594,18 @@ let
};
};
+ Win32ShellQuote = buildPerlPackage rec {
+ name = "Win32-ShellQuote-0.003001";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz";
+ sha256 = "aa74b0e3dc2d41cd63f62f853e521ffd76b8d823479a2619e22edb4049b4c0dc";
+ };
+ meta = {
+ description = "Quote argument lists for Win32";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
Workflow = buildPerlModule rec {
name = "Workflow-1.45";
src = fetchurl {
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index e2df4dda96e..b9e3f6c9393 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -454,7 +454,9 @@ in {
grandalf = callPackage ../development/python-modules/grandalf { };
- gprof2dot = callPackage ../development/python-modules/gprof2dot { };
+ gprof2dot = callPackage ../development/python-modules/gprof2dot {
+ inherit (pkgs) graphviz;
+ };
gsd = callPackage ../development/python-modules/gsd { };
@@ -857,6 +859,8 @@ in {
python-rapidjson = callPackage ../development/python-modules/python-rapidjson { };
+ python-redis-lock = callPackage ../development/python-modules/python-redis-lock { };
+
python-sql = callPackage ../development/python-modules/python-sql { };
python-snappy = callPackage ../development/python-modules/python-snappy {
@@ -4442,6 +4446,8 @@ in {
statsmodels = callPackage ../development/python-modules/statsmodels { };
+ strategies = callPackage ../development/python-modules/strategies { };
+
stravalib = callPackage ../development/python-modules/stravalib { };
streamz = callPackage ../development/python-modules/streamz { };