mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
Adding verboseness option to gnunet
This commit is contained in:
parent
a2600b7bc3
commit
42ee481f5d
@ -1,7 +1,8 @@
|
||||
{ stdenv, fetchsvn, libextractor, libmicrohttpd, libgcrypt
|
||||
, zlib, gmp, curl, libtool, adns, sqlite, pkgconfig
|
||||
, libxml2, ncurses, gettext, libunistring, libidn
|
||||
, makeWrapper, autoconf, automake }:
|
||||
, makeWrapper, autoconf, automake
|
||||
, withVerbose ? false }:
|
||||
|
||||
let
|
||||
rev = "27775";
|
||||
@ -22,6 +23,8 @@ stdenv.mkDerivation rec {
|
||||
autoconf automake
|
||||
];
|
||||
|
||||
configureFlags = stdenv.lib.optional withVerbose "--enable-logging=verbose ";
|
||||
|
||||
preConfigure = ''
|
||||
# Brute force: since nix-worker chroots don't provide
|
||||
# /etc/{resolv.conf,hosts}, replace all references to `localhost'
|
||||
|
Loading…
Reference in New Issue
Block a user