blob: b1f1a4786135ef8ea07c2089e9abb53498db338a (
plain) (
tree)
|
|
{ pkgs, ... }:
with pkgs.emacsPackagesNg;
melpaBuild rec {
pname = "term-switcher";
version = "1.0";
src = ./term-switcher.el;
packageRequires = [ dash ivy s vterm ];
recipe = builtins.toFile "recipe" ''
(term-switcher :fetcher github :repo "tazjin/depot")
'';
}
|