Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 27, 2024
2 parents c2c6ad9 + af1cb7d commit 13312b9
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 39 deletions.
21 changes: 12 additions & 9 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,18 @@

pkgs.darwin.apple_sdk.frameworks.AppKit
pkgs.darwin.apple_sdk.frameworks.WebKit
(pkgs.darwin.apple_sdk_11_0.stdenv.mkDerivation {
name = "go";
nativeBuildInputs = with pkgs; [ makeBinaryWrapper go ];
dontBuild = true;
dontUnpack = true;
installPhase = ''
makeWrapper ${pkgs.go}/bin/go $out/bin/go
'';
})
(if pkgs.system == "x86_64-darwin" then
(pkgs.darwin.apple_sdk_11_0.stdenv.mkDerivation {
name = "go";
nativeBuildInputs = with pkgs; [ makeBinaryWrapper go ];
dontBuild = true;
dontUnpack = true;
installPhase = ''
makeWrapper ${pkgs.go}/bin/go $out/bin/go
'';
})
else
pkgs.go)
]);
builders = {
rustZome = { crateCargoToml, workspacePath, cargoArtifacts ? null
Expand Down
30 changes: 15 additions & 15 deletions nix/fixtures/module-repo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions nix/reference-happ/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 13312b9

Please sign in to comment.