mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
whois: use libidn2 to support various 'international' domains
This commit is contained in:
parent
90c67ea36a
commit
364b21925f
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, perl, gettext }:
|
||||
{ stdenv, fetchFromGitHub, perl, gettext, pkgconfig, libidn2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "5.2.20";
|
||||
@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1aamasivfnghr9my1j6c1rf0dfal45axjcjf3mpv0g942bkxqp5b";
|
||||
};
|
||||
|
||||
buildInputs = [ perl gettext ];
|
||||
nativeBuildInputs = [ perl gettext pkgconfig ];
|
||||
buildInputs = [ libidn2 ];
|
||||
|
||||
preConfigure = ''
|
||||
for i in Makefile po/Makefile; do
|
||||
|
Loading…
Reference in New Issue
Block a user