summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-09-02 19:04:41 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-09-02 19:04:41 +0300
commitadf471c83c7dae7620493a6e51f6c034f1468d44 (patch)
tree7823631a8cbea0ee2b6679bb4765d75811769dd4 /pkgs/misc
parent1e665de6b48731718cf46868008a2e095ca44330 (diff)
downloadnixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.tar
nixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.tar.gz
nixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.tar.bz2
nixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.tar.lz
nixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.tar.xz
nixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.tar.zst
nixpkgs-adf471c83c7dae7620493a6e51f6c034f1468d44.zip
urbit: Fix build
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/urbit/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/misc/urbit/default.nix b/pkgs/misc/urbit/default.nix
index a3a58d8eccf..c1dcda54a62 100644
--- a/pkgs/misc/urbit/default.nix
+++ b/pkgs/misc/urbit/default.nix
@@ -18,6 +18,9 @@ stdenv.mkDerivation rec {
     ncurses perl zlib python
   ];
 
+  # uses 'readdir_r' deprecated by glibc 2.24
+  NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
+
   configurePhase = ''
     :
   '';