aa122cbae7
This CL can be used to compare the style of nixpkgs-fmt against other formatters (nixpkgs, alejandra). Change-Id: I87c6abff6bcb546b02ead15ad0405f81e01b6d9e Reviewed-on: https://cl.tvl.fyi/c/depot/+/4397 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: Profpatsch <mail@profpatsch.de> Reviewed-by: kanepyork <rikingcoding@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: cynthia <cynthia@tvl.fyi> Reviewed-by: edef <edef@edef.eu> Reviewed-by: eta <tvl@eta.st> Reviewed-by: grfn <grfn@gws.fyi>
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
src = with pkgs; srcOnly lispPackages.closure-common;
|
|
getSrcs = builtins.map (p: "${src}/${p}");
|
|
in
|
|
depot.nix.buildLisp.library {
|
|
name = "closure-common";
|
|
|
|
# closure-common.asd surpresses some warnings otherwise breaking
|
|
# compilation. Feature macros across implementations:
|
|
#
|
|
# ECL #+rune-is-character #-rune-is-integer #-x&y-streams-are-stream
|
|
# CCL #+rune-is-character #-rune-is-integer #-x&y-streams-are-stream
|
|
# SBCL #+rune-is-character #-rune-is-integer #-x&y-streams-are-stream
|
|
#
|
|
# Since all implementations agree, the alternative files aren't encoded here.
|
|
srcs = getSrcs [
|
|
"closure-common.asd"
|
|
"package.lisp"
|
|
"definline.lisp"
|
|
"characters.lisp" #+rune-is-character
|
|
"syntax.lisp"
|
|
"encodings.lisp" #-x&y-streams-are-stream
|
|
"encodings-data.lisp" #-x&y-streams-are-stream
|
|
"xstream.lisp" #-x&y-streams-are-stream
|
|
"ystream.lisp" #-x&y-streams-are-stream
|
|
"hax.lisp"
|
|
];
|
|
|
|
deps = [
|
|
(depot.nix.buildLisp.bundled "asdf")
|
|
depot.third_party.lisp.trivial-gray-streams
|
|
depot.third_party.lisp.babel #+rune-is-character
|
|
];
|
|
}
|