From cb94157e1a3b24df4d939238265592fcdf0c6c18 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Thu, 18 Jan 2024 13:16:35 -0300 Subject: [PATCH] Reformat --- haxe/flake.nix | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/haxe/flake.nix b/haxe/flake.nix index 46e02d7..6c2c0ea 100644 --- a/haxe/flake.nix +++ b/haxe/flake.nix @@ -3,21 +3,24 @@ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - outputs = { - self, - nixpkgs, - }: let - supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"]; - forEachSupportedSystem = f: - nixpkgs.lib.genAttrs supportedSystems (system: - f { - pkgs = import nixpkgs {inherit system;}; - }); - in { - devShells = forEachSupportedSystem ({pkgs}: { - default = pkgs.mkShell { - packages = with pkgs; [haxe]; - }; - }); - }; + outputs = + { self + , nixpkgs + , + }: + let + supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; + forEachSupportedSystem = f: + nixpkgs.lib.genAttrs supportedSystems (system: + f { + pkgs = import nixpkgs { inherit system; }; + }); + in + { + devShells = forEachSupportedSystem ({ pkgs }: { + default = pkgs.mkShell { + packages = with pkgs; [ haxe ]; + }; + }); + }; }