tvl-depot/tools/emacs-pkgs/term-switcher/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
280 B
Nix
Raw Normal View History

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