Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fbf553ea2b02
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7b2bdbea75a2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jul 1, 2020

  1. libwebsockets: fix clang build

    LnL7 committed Jul 1, 2020
    Copy the full SHA
    e002920 View commit details

Commits on Jul 5, 2020

  1. Merge pull request #91970 from LnL7/darwin-libwebsockets

    libwebsockets: fix clang build
    LnL7 authored Jul 5, 2020
    Copy the full SHA
    7b2bdbe View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/development/libraries/libwebsockets/default.nix
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libwebsockets/default.nix
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ let
nativeBuildInputs = [ cmake ];

cmakeFlags = [ "-DLWS_WITH_PLUGINS=ON" ];
NIX_CFLAGS_COMPILE = "-Wno-error=unused-but-set-variable";
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isGNU "-Wno-error=unused-but-set-variable";

meta = with stdenv.lib; {
description = "Light, portable C library for websockets";