feat(third_party/lisp): Check in dependencies of gemma
This commit is contained in:
parent
437efa7686
commit
e25916d10c
4 changed files with 89 additions and 0 deletions
17
third_party/lisp/s-sysdeps.nix
vendored
Normal file
17
third_party/lisp/s-sysdeps.nix
vendored
Normal 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"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue