lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gdbm: avoid a warning on Darwin

This is just to minimize rebuilds. The actual bugfix doesn't seem to
hurry, as the function has been returning void until now, so if the int
returned isn't a meaningful value in some cases, nothing should happen
yet.

+2
+2
pkgs/development/libraries/gdbm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gdbm-1.17"; 5 + # FIXME: remove on update to > 1.17 6 + NIX_CFLAGS_COMPILE = if stdenv.cc.isClang then "-Wno-error=return-type" else null; 5 7 6 8 src = fetchurl { 7 9 url = "mirror://gnu/gdbm/${name}.tar.gz";