15 lines
288 B
Nix
15 lines
288 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
with pkgs.third_party.emacsPackagesNg;
|
||
|
|
||
|
melpaBuild rec {
|
||
|
pname = "term-switcher";
|
||
|
version = "1.0";
|
||
|
src = ./term-switcher.el;
|
||
|
packageRequires = [ dash ivy s ];
|
||
|
|
||
|
recipe = builtins.toFile "recipe" ''
|
||
|
(term-switcher :fetcher github :repo "tazjin/depot")
|
||
|
'';
|
||
|
}
|