diff options
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r-- | pkgs/default.nix | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 18b7c50..2ce9dac 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,14 +1,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; + 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; } |