move all files to new nixfmt rfc

This commit is contained in:
Noah Masur
2024-04-20 09:42:06 -04:00
parent b23efc4d77
commit e43fc0f8db
159 changed files with 5309 additions and 4537 deletions

View File

@ -11,18 +11,22 @@
inputs.pypi-deps-db.follows = "pypi-deps-db";
};
outputs = { nixpkgs, mach-nix, ... }:
outputs =
{ nixpkgs, mach-nix, ... }:
let
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f:
nixpkgs.lib.genAttrs supportedSystems
(system: f system (import nixpkgs { inherit system; }));
in rec {
defaultApp = forAllSystems (system: _pkgs:
mach-nix.lib."${system}".mkPython {
requirements = builtins.readFile ./requirements.txt;
});
devShell = forAllSystems (system: pkgs:
pkgs.mkShell { buildInputs = [ defaultApp."${system}" ]; });
supportedSystems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems =
f: nixpkgs.lib.genAttrs supportedSystems (system: f system (import nixpkgs { inherit system; }));
in
rec {
defaultApp = forAllSystems (
system: _pkgs:
mach-nix.lib."${system}".mkPython { requirements = builtins.readFile ./requirements.txt; }
);
devShell = forAllSystems (system: pkgs: pkgs.mkShell { buildInputs = [ defaultApp."${system}" ]; });
};
}