Skip to content

Commit

Permalink
Only include go once
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Dec 20, 2024
1 parent 33210b4 commit f1311a0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,11 @@
};
# additional packages needed for build
buildInputs = [
pkgs.go
pkgs.perl
] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin
] ++ (pkgs.lib.optionals pkgs.stdenv.isLinux
[
pkgs.go
]) ++ pkgs.lib.optionals pkgs.stdenv.isDarwin
[
(if pkgs.system == "x86_64-darwin" then
pkgs.darwin.apple_sdk_11_0.stdenv.mkDerivation
Expand Down

0 comments on commit f1311a0

Please sign in to comment.