Compare commits

..

2 commits

Author SHA1 Message Date
c72032f0ce ci: fix deprecated syntax
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2023-12-06 12:02:08 +00:00
34df20cdb7 nix: fix deprecated flake attributes 2023-12-06 12:02:08 +00:00

View file

@ -87,9 +87,7 @@
};
};
defaultPackage = self.packages.${system}.abacus;
devShell = pkgs.mkShell {
devShells.default = pkgs.mkShell {
inputsFrom = with self.packages.${system}; [
abacus
];
@ -99,6 +97,7 @@
packages = futils.lib.flattenTree {
inherit (pkgs) abacus;
default = pkgs.abacus;
};
});
}