blob: da8f3c893ae7d1dbaaa0b3ffdf0388f012cf7c40 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# One of Gemma's dependencies is missing in nixpkgs' Quicklisp
# package set, it is overlaid locally here.
{ pkgs, upstream, ... }:
import ./quicklisp.nix {
inherit (pkgs) lib;
inherit (upstream) lispPackages;
}
|