summaryrefslogtreecommitdiff
path: root/nix/packages.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/packages.nix')
-rw-r--r--nix/packages.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/nix/packages.nix b/nix/packages.nix
index ba6dc6e..764301c 100644
--- a/nix/packages.nix
+++ b/nix/packages.nix
@@ -1,8 +1,4 @@
-{
- self,
- inputs,
- ...
-}: {
+{self, ...}: {
perSystem = {
pkgs,
system,
@@ -10,11 +6,7 @@
...
}: {
packages = {
- teawiebot = pkgs.callPackage ./derivation.nix {
- inherit self;
- naersk = inputs.naersk.lib.${system};
- };
-
+ teawiebot = pkgs.callPackage ./derivation.nix {inherit self;};
default = self'.packages.teawiebot;
};
};