5b833a1375
Add a simple tvl.el, with only one magit transient command to push and submit in one go to Gerrit Change-Id: If02065797a8db39669b85acf87a1c4b43d1482ee Reviewed-on: https://cl.tvl.fyi/c/depot/+/494 Reviewed-by: tazjin <mail@tazj.in>
10 lines
148 B
Nix
10 lines
148 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs.emacsPackages;
|
|
|
|
trivialBuild rec {
|
|
pname = "tvl";
|
|
version = "1.0";
|
|
src = ./tvl.el;
|
|
packageRequires = [ magit ];
|
|
}
|