From ea7479b162a269a495024124d9b13c028a353b41 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 6 Dec 2023 11:58:17 +0000 Subject: [PATCH] nix: fix deprecated flake attributes --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index e5531d2..cfc19c3 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ outputs = { self, futils, nixpkgs, pre-commit-hooks }: { - overlay = final: prev: { + overlays.default = final: prev: { abacus = final.stdenv.mkDerivation { pname = "abacus"; version = "0.0.0"; @@ -62,7 +62,7 @@ }; } // futils.lib.eachDefaultSystem (system: let - pkgs = import nixpkgs { inherit system; overlays = [ self.overlay ]; }; + pkgs = import nixpkgs { inherit system; overlays = [ self.overlays.default ]; }; in { checks = {