tvl-depot/tools/emacs-pkgs/term-switcher/default.nix
2020-02-21 13:54:53 +00:00

14 lines
282 B
Nix

{ 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")
'';
}