mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Merge pull request #10895 from sjourdois/libidn
darwin: libidn: add missing libiconv dep
This commit is contained in:
commit
2092b833bb
@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv }:
|
||||
{ fetchurl, stdenv, libiconv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libidn-1.32";
|
||||
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = ! stdenv.isDarwin;
|
||||
|
||||
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/libidn/;
|
||||
description = "Library for internationalized domain names";
|
||||
|
Loading…
Reference in New Issue
Block a user