feat(3p/lisp): Add LASS

Add LASS, a CSS library

Change-Id: I225959b12210895d0e5baf8a41ac09b0351f0aed
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1349
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Griffin Smith 2020-07-22 16:28:34 -04:00 committed by glittershark
parent f591c32dfb
commit b1c0866037
6 changed files with 147 additions and 0 deletions

20
third_party/lisp/parseq.nix vendored Normal file
View file

@ -0,0 +1,20 @@
{ depot, pkgs, ... }:
let
src = pkgs.fetchFromGitHub {
owner = "mrossini-ethz";
repo = "parseq";
rev = "5cd95b324b68255d89f27f8065f4c29674558b26";
sha256 = "1f3vvxgyiv0xn2hzafhh63l3gnvn2vaxr5pi3ld7d340mka2ndg0";
};
in depot.nix.buildLisp.library {
name = "parseq";
srcs = map (f: src + ("/" + f)) [
"package.lisp"
"conditions.lisp"
"utils.lisp"
"defrule.lisp"
];
}