9 lines
266 B
Nix
9 lines
266 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
rec {
|
|
gather-dependencies = pkg: unique (pkg.propagatedBuildInputs ++ (concatMap gather-dependencies pkg.propagatedBuildInputs));
|
|
|
|
lisp-source-registry = pkg: concatStringsSep ":" (map (p: "${p}//") (gather-dependencies pkg));
|
|
}
|