blob: 1069328ee20ac07506d7ed49833be1a194ccea9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
pkgs,
inputs,
lib,
...
}: let
options =
(lib.evalModules {
modules = [
../options.nix
];
}).config;
in {
arcanist = pkgs.callPackage ./arcanist {};
astal = pkgs.callPackage ./astal {
inherit inputs options;
};
libfprint-2-tod1-vfs0090 = pkgs.callPackage ./libfprint-2-tod1-vfs0090 {};
}
|