summaryrefslogtreecommitdiff
path: root/pkgs/default.nix
blob: 58e8f05380f6cf747deb8749632006a6a0ca5dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, inputs, system, ... }:

let
	build = (path: pkgs.callPackage path {
		inherit pkgs;
		inherit inputs;
		inherit system;
	});
in
{
	astal = build ./astal;
	unofficial-homestuck-collection = build ./unofficial-homestuck-collection;
}