Skip to content

Commit

Permalink
try: replace musl by gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed Jan 19, 2024
1 parent 7a17c65 commit 7d0bf94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/sss_cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
let
pkgs = import <nixpkgs> { };
platform = {
"x86_64-linux" = "x86_64-unknown-linux-musl";
"x86_64-linux" = "x86_64-unknown-linux-gnu";
"x86_64-darwin" = "x86_64-apple-darwin";
"aarch64-darwin" = "aarch64-apple-darwin";
}."${pkgs.stdenv.hostPlatform.system}";
Expand Down
2 changes: 1 addition & 1 deletion crates/sss_code/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
let
pkgs = import <nixpkgs> { };
platform = {
"x86_64-linux" = "x86_64-unknown-linux-musl";
"x86_64-linux" = "x86_64-unknown-linux-gnu";
"x86_64-darwin" = "x86_64-apple-darwin";
"aarch64-darwin" = "aarch64-apple-darwin";
}."${pkgs.stdenv.hostPlatform.system}";
Expand Down

0 comments on commit 7d0bf94

Please sign in to comment.