this repo has no description
1
fork

Configure Feed

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

Fix Direnv on macOS

+19 -10
+9 -9
flake.lock
··· 91 91 ] 92 92 }, 93 93 "locked": { 94 - "lastModified": 1773778910, 95 - "narHash": "sha256-/k+YKWNxRAufWpDwx3TeHArKEcYu5RreUyqgWTrce64=", 94 + "lastModified": 1774616761, 95 + "narHash": "sha256-pzfNGD4voajXEozJPdOom795D3f+thTrPsj3Dlko2SM=", 96 96 "owner": "elixir-lang", 97 97 "repo": "expert", 98 - "rev": "a2a29470fb5e39c9942c9fd8cdbafe9da95d95c8", 98 + "rev": "1bbd0df1ebc79621919096ae4c6f911bf5d91336", 99 99 "type": "github" 100 100 }, 101 101 "original": { ··· 162 162 ] 163 163 }, 164 164 "locked": { 165 - "lastModified": 1773810247, 166 - "narHash": "sha256-6Vz1Thy/1s7z+Rq5OfkWOBAdV4eD+OrvDs10yH6xJzQ=", 165 + "lastModified": 1774584114, 166 + "narHash": "sha256-uWR9fC+4NykFJVn4GN4Ini9LX+w8Llj7BnWKKp0N6bw=", 167 167 "owner": "nix-community", 168 168 "repo": "home-manager", 169 - "rev": "d47357a4c806d18a3e853ad2699eaec3c01622e7", 169 + "rev": "4b1be5c38be350ee9452a4847945ce71d950dc31", 170 170 "type": "github" 171 171 }, 172 172 "original": { ··· 177 177 }, 178 178 "nixpkgs": { 179 179 "locked": { 180 - "lastModified": 1773628058, 181 - "narHash": "sha256-hpXH0z3K9xv0fHaje136KY872VT2T5uwxtezlAskQgY=", 180 + "lastModified": 1774273680, 181 + "narHash": "sha256-a++tZ1RQsDb1I0NHrFwdGuRlR5TORvCEUksM459wKUA=", 182 182 "owner": "NixOS", 183 183 "repo": "nixpkgs", 184 - "rev": "f8573b9c935cfaa162dd62cc9e75ae2db86f85df", 184 + "rev": "fdc7b8f7b30fdbedec91b71ed82f36e1637483ed", 185 185 "type": "github" 186 186 }, 187 187 "original": {
+10 -1
modules/direnv.nix
··· 1 - { ... }: 1 + { pkgs, ... }: 2 2 { 3 3 programs.direnv = { 4 4 enable = true; 5 + 6 + package = pkgs.direnv.overrideAttrs (old: { 7 + # With CGO disabled the internal linker is used by default; remove the 8 + # explicit -linkmode=external flag from the Makefile which is incompatible 9 + # with CGO_ENABLED=0 (see https://github.com/NixOS/nixpkgs/pull/486452) 10 + postPatch = '' 11 + substituteInPlace GNUmakefile --replace-fail " -linkmode=external" "" 12 + ''; 13 + }); 5 14 6 15 nix-direnv.enable = true; 7 16