feat(third_party/lisp): Check in dependencies of gemma

This commit is contained in:
Vincent Ambo 2020-01-22 00:50:05 +00:00
parent 437efa7686
commit e25916d10c
4 changed files with 89 additions and 0 deletions

17
third_party/lisp/s-sysdeps.nix vendored Normal file
View file

@ -0,0 +1,17 @@
# A Common Lisp abstraction layer over platform dependent functionality.
{ pkgs, ... }:
let src = pkgs.third_party.fetchFromGitHub {
owner = "svenvc";
repo = "s-sysdeps";
rev = "d28246b5dffef9e73a0e0e6cfbc4e878006fe34d";
sha256 = "14b69b81yrxmjlvmm3lfxk04x5v7hqz4fql121334wh72czznfh9";
};
in pkgs.nix.buildLisp.library {
name = "s-sysdeps";
srcs = [
"${src}/src/package.lisp"
"${src}/src/sysdeps.lisp"
];
}