nix: fix deprecated flake attributes
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This commit is contained in:
parent
2e29dea2b6
commit
ea7479b162
1 changed files with 2 additions and 2 deletions
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue