about summary refs log tree commit diff
path: root/pkgs/tools/misc/pipelight
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-12-25 16:03:20 +0000
committerAlyssa Ross <hi@alyssa.is>2019-12-25 18:43:04 +0000
commit349872f778cd4765ba83cf2c7404b005d65471f8 (patch)
tree56f69ffb84b271f82cc976bda19956e02542d8aa /pkgs/tools/misc/pipelight
parentb3e3daeeba30861f0dffa8ea2da1c92c8c71f988 (diff)
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.
Diffstat (limited to 'pkgs/tools/misc/pipelight')
-rw-r--r--pkgs/tools/misc/pipelight/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/pipelight/default.nix b/pkgs/tools/misc/pipelight/default.nix
index 20b45360f01b3..4c7e9d0892cae 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 ];