feat(3p/lisp): Add postmodern

Change-Id: If6ffd9a2344dc98e95312ddcce14ba5c2519d004
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1420
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Griffin Smith 2020-07-24 13:36:40 -04:00 committed by glittershark
parent 273053dbf3
commit da8bc7635e
4 changed files with 228 additions and 0 deletions

14
third_party/lisp/global-vars.nix vendored Normal file
View file

@ -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" ] ;
}