gnunet: format with nixfmt
This commit is contained in:
@@ -1,9 +1,36 @@
|
||||
{ lib, stdenv, fetchurl, adns, curl, gettext, gmp, gnutls, libextractor
|
||||
, libgcrypt, libgnurl, libidn, libmicrohttpd, libtool, libunistring
|
||||
, makeWrapper, ncurses, pkg-config, libxml2, sqlite, zlib
|
||||
, libpulseaudio, libopus, libogg, jansson, libsodium, meson, ninja
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
adns,
|
||||
curl,
|
||||
gettext,
|
||||
gmp,
|
||||
gnutls,
|
||||
libextractor,
|
||||
libgcrypt,
|
||||
libgnurl,
|
||||
libidn,
|
||||
libmicrohttpd,
|
||||
libtool,
|
||||
libunistring,
|
||||
makeWrapper,
|
||||
ncurses,
|
||||
pkg-config,
|
||||
libxml2,
|
||||
sqlite,
|
||||
zlib,
|
||||
libpulseaudio,
|
||||
libopus,
|
||||
libogg,
|
||||
jansson,
|
||||
libsodium,
|
||||
meson,
|
||||
ninja,
|
||||
|
||||
, postgresqlSupport ? true, libpq }:
|
||||
postgresqlSupport ? true,
|
||||
libpq,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnunet";
|
||||
@@ -16,11 +43,34 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkg-config libtool makeWrapper meson ninja ];
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
libtool
|
||||
makeWrapper
|
||||
meson
|
||||
ninja
|
||||
];
|
||||
buildInputs = [
|
||||
adns curl gmp gnutls libextractor libgcrypt libgnurl libidn
|
||||
libmicrohttpd libunistring libxml2 ncurses gettext libsodium
|
||||
sqlite zlib libpulseaudio libopus libogg jansson
|
||||
adns
|
||||
curl
|
||||
gmp
|
||||
gnutls
|
||||
libextractor
|
||||
libgcrypt
|
||||
libgnurl
|
||||
libidn
|
||||
libmicrohttpd
|
||||
libunistring
|
||||
libxml2
|
||||
ncurses
|
||||
gettext
|
||||
libsodium
|
||||
sqlite
|
||||
zlib
|
||||
libpulseaudio
|
||||
libopus
|
||||
libogg
|
||||
jansson
|
||||
] ++ lib.optional postgresqlSupport libpq;
|
||||
|
||||
preConfigure = ''
|
||||
|
||||
Reference in New Issue
Block a user