nix: fix deprecated flake attributes
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2023-12-06 11:58:17 +00:00
parent 2e29dea2b6
commit ea7479b162

View file

@ -30,7 +30,7 @@
outputs = { self, futils, nixpkgs, pre-commit-hooks }: outputs = { self, futils, nixpkgs, pre-commit-hooks }:
{ {
overlay = final: prev: { overlays.default = final: prev: {
abacus = final.stdenv.mkDerivation { abacus = final.stdenv.mkDerivation {
pname = "abacus"; pname = "abacus";
version = "0.0.0"; version = "0.0.0";
@ -62,7 +62,7 @@
}; };
} // futils.lib.eachDefaultSystem (system: } // futils.lib.eachDefaultSystem (system:
let let
pkgs = import nixpkgs { inherit system; overlays = [ self.overlay ]; }; pkgs = import nixpkgs { inherit system; overlays = [ self.overlays.default ]; };
in in
{ {
checks = { checks = {