this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

potential fix for tar command

Altagos 44af7769 16c0027d

+11 -1
+11 -1
flake.nix
··· 13 13 }: let 14 14 flake-utils = zig2nix.inputs.flake-utils; 15 15 in (flake-utils.lib.eachDefaultSystem (system: let 16 + # Fix zig to handle tar extraction in Docker containers 17 + zigFixed = zig2nix.outputs.packages.${system}.zig-latest.overrideAttrs (oldAttrs: { 18 + # Set TAR_OPTIONS for the unpack phase to avoid ownership issues 19 + preUnpack = '' 20 + export TAR_OPTIONS="--no-same-owner" 21 + ''; 22 + }); 16 23 # Zig flake helper 17 24 # Check the flake.nix in zig2nix project for more options: 18 25 # <https://github.com/Cloudef/zig2nix/blob/master/flake.nix> 19 - env = zig2nix.outputs.zig-env.${system} {zig = zig2nix.outputs.packages.${system}.zig-latest;}; 26 + # env = zig2nix.outputs.zig-env.${system} {zig = zig2nix.outputs.packages.${system}.zig-latest;}; 27 + env = zig2nix.outputs.zig-env.${system} { 28 + zig = zigFixed; # Use the fixed zig instead of zig-latest 29 + }; 20 30 pkgs = nixpkgs.legacyPackages.${system}; 21 31 in 22 32 with builtins;