2019-12-15 23:53:58 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
2020-03-09 00:17:01 +01:00
|
|
|
with pkgs.emacsPackages;
|
2019-12-15 23:53:58 +01:00
|
|
|
|
|
|
|
melpaBuild rec {
|
|
|
|
pname = "term-switcher";
|
|
|
|
version = "1.0";
|
|
|
|
src = ./term-switcher.el;
|
2019-12-16 04:57:03 +01:00
|
|
|
packageRequires = [ dash ivy s vterm ];
|
2019-12-15 23:53:58 +01:00
|
|
|
|
|
|
|
recipe = builtins.toFile "recipe" ''
|
|
|
|
(term-switcher :fetcher github :repo "tazjin/depot")
|
|
|
|
'';
|
|
|
|
}
|