Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
141 lines
3.4 KiB
Nix
141 lines
3.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
|
|
# build-time deps
|
|
libtool,
|
|
makeWrapper,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
|
|
# runtime deps
|
|
adns,
|
|
bashNonInteractive,
|
|
curl,
|
|
gettext,
|
|
gmp,
|
|
gnutls,
|
|
jansson,
|
|
libextractor,
|
|
libgcrypt,
|
|
libgnurl,
|
|
libidn,
|
|
libmicrohttpd,
|
|
libogg,
|
|
libopus,
|
|
libpulseaudio,
|
|
libsodium,
|
|
libunistring,
|
|
libxml2,
|
|
ncurses,
|
|
sqlite,
|
|
zlib,
|
|
|
|
postgresqlSupport ? true,
|
|
libpq,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gnunet";
|
|
version = "0.25.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gnunet/gnunet-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-ITNsFs1X+R+dX9U1lILZFRp83w1jlvi2GCjBfMxmj1w=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [
|
|
gettext # msgfmt
|
|
makeWrapper
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
adns
|
|
bashNonInteractive
|
|
curl
|
|
gmp
|
|
gnutls
|
|
jansson
|
|
libextractor
|
|
libgcrypt
|
|
libgnurl
|
|
libidn
|
|
libmicrohttpd
|
|
libogg
|
|
libopus
|
|
libpulseaudio
|
|
libsodium
|
|
libtool
|
|
libunistring
|
|
libxml2
|
|
ncurses
|
|
sqlite
|
|
zlib
|
|
]
|
|
++ lib.optional postgresqlSupport libpq;
|
|
|
|
strictDeps = true;
|
|
|
|
preConfigure = ''
|
|
# Brute force: since nix-worker chroots don't provide
|
|
# /etc/{resolv.conf,hosts}, replace all references to `localhost'
|
|
# by their IPv4 equivalent.
|
|
find . \( -name \*.c -or -name \*.conf \) | \
|
|
xargs sed -i -e 's|\<localhost\>|127.0.0.1|g'
|
|
|
|
# Make sure the tests don't rely on `/tmp', for the sake of chroot
|
|
# builds.
|
|
find . \( -iname \*test\*.c -or -name \*.conf \) | \
|
|
xargs sed -i -e "s|/tmp|$TMPDIR|g"
|
|
|
|
# fix error: conflicting types for `GNUNET_TESTING_cmd_{exec,finish}`
|
|
for name in exec finish; do
|
|
substituteInPlace src/lib/testing/testing_api_cmd_$name.c \
|
|
--replace-fail 'const struct GNUNET_TESTING_Command' 'struct GNUNET_TESTING_Command'
|
|
done
|
|
'';
|
|
|
|
# unfortunately, there's still a few failures with impure tests
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
export GNUNET_PREFIX="$out"
|
|
export PATH="$out/bin:$PATH"
|
|
make -k check
|
|
'';
|
|
|
|
meta = {
|
|
description = "GNU's decentralized anonymous and censorship-resistant P2P framework";
|
|
|
|
longDescription = ''
|
|
GNUnet is a framework for secure peer-to-peer networking that
|
|
does not use any centralized or otherwise trusted services. A
|
|
first service implemented on top of the networking layer
|
|
allows anonymous censorship-resistant file-sharing. Anonymity
|
|
is provided by making messages originating from a peer
|
|
indistinguishable from messages that the peer is routing. All
|
|
peers act as routers and use link-encrypted connections with
|
|
stable bandwidth utilization to communicate with each other.
|
|
GNUnet uses a simple, excess-based economic model to allocate
|
|
resources. Peers in GNUnet monitor each others behavior with
|
|
respect to resource usage; peers that contribute to the
|
|
network are rewarded with better service.
|
|
'';
|
|
|
|
homepage = "https://gnunet.org/";
|
|
license = lib.licenses.agpl3Plus;
|
|
maintainers = with lib.maintainers; [ pstn ];
|
|
teams = with lib.teams; [ ngi ];
|
|
platforms = lib.platforms.unix;
|
|
changelog = "https://git.gnunet.org/gnunet.git/tree/ChangeLog?h=v${finalAttrs.version}";
|
|
# meson: "Can not run test applications in this cross environment." (for dane_verify_crt_raw)
|
|
broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
};
|
|
})
|