blob: 2ce9daceca8f3ca554729165664ba911df416a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
pkgs,
inputs,
system,
options,
...
}: let
build = path:
pkgs.callPackage path {
inherit pkgs;
inherit inputs;
inherit system;
inherit options;
};
in {
astal = build ./astal;
unofficial-homestuck-collection = build ./unofficial-homestuck-collection;
}
|