diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-24T17·36-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-26T21·55+0000 |
commit | da8bc7635e746ba313801632c9001df9161d3605 (patch) | |
tree | ac6c185a78ff8751baecb49b9443e2a3427280e7 /third_party/lisp/global-vars.nix | |
parent | 273053dbf3287c02dda60b442cf138a412d8f75b (diff) |
feat(3p/lisp): Add postmodern r/1485
Change-Id: If6ffd9a2344dc98e95312ddcce14ba5c2519d004 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1420 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'third_party/lisp/global-vars.nix')
-rw-r--r-- | third_party/lisp/global-vars.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/lisp/global-vars.nix b/third_party/lisp/global-vars.nix new file mode 100644 index 000000000000..2b4078f588cd --- /dev/null +++ b/third_party/lisp/global-vars.nix @@ -0,0 +1,14 @@ +{ depot, pkgs, ... }: + +let + src = pkgs.fetchFromGitHub { + owner = "lmj"; + repo = "global-vars"; + rev = "c749f32c9b606a1457daa47d59630708ac0c266e"; + sha256 = "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"; + }; + +in depot.nix.buildLisp.library { + name = "global-vars"; + srcs = [ "${src}/global-vars.lisp" ] ; +} |