about summary refs log tree commit diff
path: root/third_party/lisp/moptilities.nix
blob: 24a7f2c06d51603d40c83c8371d5cf6827d70d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Compatibility layer for minor MOP implementation differences
{ depot, ... }:

let src = depot.third_party.fetchFromGitHub {
  owner = "gwkkwg";
  repo = "moptilities";
  rev = "a436f16b357c96b82397ec018ea469574c10dd41";
  sha256 = "1q12bqjbj47lx98yim1kfnnhgfhkl80102fkgp9pdqxg0fp6g5fc";
};
in depot.nix.buildLisp.library {
  name = "moptilities";
  deps = [ depot.third_party.lisp.closer-mop ];
  srcs = [ "${src}/dev/moptilities.lisp" ];
}