9 stdenv.mkDerivation rec {
13 src = fetchFromSourcehut {
17 sha256 = "sha256-3MFNAI/SfFigNfitfFs3o9kkz7JeEflMHiH7iJpLfi4=";
20 nativeBuildInputs = [ scdoc ];
21 buildInputs = [ bearssl ];
23 # Fix build on `gcc-13`:
24 # inlined from 'xt_end_chain' at src/tofu.c:82:3,
25 # ...-glibc-2.38-27-dev/include/bits/stdio2.h:54:10: error: '__builtin___snprintf_chk' specified bound 4 exceeds destination size 3 [-Werror=stringop-overflow]
27 # The overflow will not happen in practice, but `snprintf()` gets
28 # passed one more byte than available.
29 hardeningDisable = [ "fortify3" ];
32 description = "Gemini client";
33 homepage = "https://git.sr.ht/~sircmpwn/gmni";
34 license = licenses.gpl3Only;
35 maintainers = with maintainers; [
39 platforms = platforms.linux;