libidn2: remove dependency on ronn

This is only needed if built from the source repository, since we are
using the release tarball the generated manpage is included. This
removes the "wild" dependency on ruby very deep in the dependency tree.
(util-linux -> systemd -> libidn2 -> ronn -> ruby)
This commit is contained in:
Robin Gloster 2018-03-30 01:07:06 +02:00
parent 266cd103f1
commit 01fb1af4f5
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF

View File

@ -15,8 +15,7 @@ stdenv.mkDerivation rec {
patches = optional stdenv.isDarwin ./fix-error-darwin.patch;
nativeBuildInputs = [ ronn ]
++ optional stdenv.isDarwin help2man;
nativeBuildInputs = optional stdenv.isDarwin help2man;
buildInputs = [ libunistring ] ++ optional stdenv.isDarwin libiconv;
depsBuildBuild = [ buildPackages.stdenv.cc ];