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 }:
{
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 = {