From 4e15449d127a88eeaf76052e95bf4e69fcdedccb Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 5 Sep 2025 17:35:51 +0200 Subject: [PATCH] build(nix): c_formatter_42 with the correction given - The flake wasn't made for macos (arm), so I made a pull requests to patch that and was merged thanks to @maix0 for it's reactivity --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index d0fb422..b34baa6 100644 --- a/flake.nix +++ b/flake.nix @@ -3,9 +3,9 @@ inputs = { flake-utils.url = "github:numtide/flake-utils"; - c_formatter_42.url = "github:maix0/c_formatter_42-flake"; + c_formatter_42.url = "github:maix-flake/c_formatter_42"; }; - outputs = { self, nixpkgs, flake-utils, c_formatter_42, }: + outputs = { self, nixpkgs, flake-utils, c_formatter_42 }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in { @@ -16,7 +16,6 @@ pkgs.clang-tools pkgs.fastmod pkgs.norminette - pkgs.valgrind pkgs.tree ] ++ (if pkgs.stdenv.isLinux then [ pkgs.valgrind ] else [ ]); };