Skip to content

Commit

Permalink
Merge pull request #272660 from NixOS/backport-272461-to-release-23.11
Browse files Browse the repository at this point in the history
[Backport release-23.11] wakelan: code predates c99, use -std=c89; fix darwin
  • Loading branch information
wegank authored Dec 7, 2023
2 parents 4903581 + e2f5657 commit 04a13a8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/tools/networking/wakelan/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ stdenv.mkDerivation rec {
hash = "sha256-PfXrj4d2SHmatiPPFxjsxvhusML1HTRNjoYEQtzFzW8=";
};

# code predates c99
env.CFLAGS = "-std=c89";

preInstall = ''
mkdir -p $out/man/man1 $out/bin
'';
Expand Down

0 comments on commit 04a13a8

Please sign in to comment.