c2f97577f7
Adds an Emacs library with so far a grand total of one helper function that can prefetch and insert a git repository at point. This is very useful for the various Go repo imports I am doing at the moment.
7 lines
134 B
Nix
7 lines
134 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.third_party.emacsPackagesNg.trivialBuild rec {
|
|
pname = "nix-util";
|
|
version = "1.0";
|
|
src = ./nix-util.el;
|
|
}
|