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