From 01fb1af4f507a2249668d664575717d84b6c1d89 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Fri, 30 Mar 2018 01:07:06 +0200 Subject: [PATCH] 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) --- pkgs/development/libraries/libidn2/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libidn2/default.nix b/pkgs/development/libraries/libidn2/default.nix index d375785e497..46cb579c56c 100644 --- a/pkgs/development/libraries/libidn2/default.nix +++ b/pkgs/development/libraries/libidn2/default.nix @@ -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 ];