blob: 18b7c504eea45d90fc3a4fb288e41fa1363f49d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ 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;
}
|