style: Reformatted flake.nix.

This commit is contained in:
Spencer Brower
2024-04-04 12:06:52 -04:00
parent 83d2ed54be
commit fa87bbc895

View File

@@ -8,20 +8,21 @@
bp.inputs.nixpkgs.follows = "nixpkgs"; bp.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { bp, self, nixpkgs }: outputs = { bp, self, nixpkgs }:
let let
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
in { in
devShells.x86_64-linux.default = pkgs.mkShell { {
buildInputs = with pkgs; [ devShells.x86_64-linux.default = pkgs.mkShell {
nodejs buildInputs = with pkgs; [
yarn nodejs
]; yarn
}; ];
};
checks.x86_64-linux.default = bp.outputs.legacyPackages.x86_64-linux.buildYarnPackage { checks.x86_64-linux.default = bp.outputs.legacyPackages.x86_64-linux.buildYarnPackage {
src = ./.; src = ./.;
yarnBuildMore = "yarn build; yarn test"; yarnBuildMore = "yarn build; yarn test";
};
}; };
};
} }