lol
fork

Configure Feed

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

Merge pull request #199440 from cpu/cpu-ldmud-fix-missing-crypt

authored by

Martin Weinelt and committed by
GitHub
2ce9f6b6 18881195

+5 -3
+5 -3
pkgs/games/ldmud/default.nix
··· 7 7 , libiconv 8 8 , pcre 9 9 , libgcrypt 10 + , libxcrypt 10 11 , json_c 11 12 , libxml2 12 13 , ipv6Support ? false ··· 39 40 sourceRoot = "${src.name}/src"; 40 41 41 42 nativeBuildInputs = 42 - [ autoreconfHook pkg-config bison libgcrypt pcre json_c libxml2 ] 43 + [ autoreconfHook pkg-config bison ]; 44 + buildInputs = [ libgcrypt libxcrypt pcre json_c libxml2 ] 43 45 ++ lib.optional mccpSupport zlib ++ lib.optional mysqlSupport libmysqlclient 44 46 ++ lib.optional postgresSupport postgresql 45 47 ++ lib.optional sqliteSupport sqlite ++ lib.optional tlsSupport openssl 46 - ++ lib.optional pythonSupport python310; 47 - buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 48 + ++ lib.optional pythonSupport python310 49 + ++ lib.optionals stdenv.isDarwin [ libiconv ]; 48 50 49 51 # To support systems without autoconf LD puts its configure.ac in a non-default 50 52 # location and uses a helper script. We skip that script and symlink the .ac