summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgs/default.nix16
1 files changed, 2 insertions, 14 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 2ce9dac..98eb1ea 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -1,17 +1,5 @@
-{
- pkgs,
- inputs,
- system,
- options,
- ...
-}: let
- build = path:
- pkgs.callPackage path {
- inherit pkgs;
- inherit inputs;
- inherit system;
- inherit options;
- };
+{pkgs, ...} @ inputs: let
+ build = file: pkgs.callPackage file inputs;
in {
astal = build ./astal;
unofficial-homestuck-collection = build ./unofficial-homestuck-collection;