Compare commits

...

2 commits

Author SHA1 Message Date
677af80264 ci: fix deprecated syntax
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2023-12-06 11:59:16 +00:00
ea7479b162 nix: fix deprecated flake attributes
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2023-12-06 11:58:17 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
labels:
type: exec
pipeline:
steps:
- name: flake check
image: bash
commands:

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