tvl-depot/tools/emacs-pkgs/term-switcher/default.nix
Vincent Ambo 65e533431a refactor: emacsPackagesNg -> emacsPackages
The former is now just an alias for the latter anyways.
2020-03-08 23:20:03 +00:00

14 lines
280 B
Nix

{ pkgs, ... }:
with pkgs.emacsPackages;
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")
'';
}