From 349872f778cd4765ba83cf2c7404b005d65471f8 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 25 Dec 2019 16:03:20 +0000 Subject: [PATCH] pipelight: fix build I removed the "propagatedbuildInputs" line because it's misspelled, and so will never have worked. Nobody seems to have complained, so presumably wasn't necessary. --- pkgs/tools/misc/pipelight/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/pipelight/default.nix b/pkgs/tools/misc/pipelight/default.nix index 20b45360f01b..4c7e9d0892ca 100644 --- a/pkgs/tools/misc/pipelight/default.nix +++ b/pkgs/tools/misc/pipelight/default.nix @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { buildInputs = [ wine_custom libX11 libGLU libGL curl ]; - propagatedbuildInputs = [ curl cabextract ]; + NIX_CFLAGS_COMPILE = [ "-fpermissive" ]; patches = [ ./pipelight.patch ];