65e533431a
The former is now just an alias for the latter anyways.
14 lines
280 B
Nix
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")
|
|
'';
|
|
}
|