libidn2: 2.0.2 -> 2.0.3
See http://lists.gnu.org/archive/html/info-gnu/2017-07/msg00008.html for release information
This commit is contained in:
parent
868dd0f7c1
commit
e420be7ab5
|
@ -1,21 +1,21 @@
|
|||
{ fetchurl, stdenv, libiconv, libunistring, help2man }:
|
||||
{ fetchurl, stdenv, libiconv, libunistring, help2man, ronn }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libidn2-${version}";
|
||||
version = "2.0.2";
|
||||
version = "2.0.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/gnu/libidn/${name}.tar.gz";
|
||||
sha256 = "1azfhz8zj1c27a5k2cspnkzkyfhcsqx2yc2sygh720dbn8l2imlc";
|
||||
sha256 = "1k88acdf242a6lbznr0h6f02frsqyqw4smw1nznibim5wyf18da3";
|
||||
};
|
||||
|
||||
outputs = [ "bin" "dev" "out" "info" "devdoc" ];
|
||||
|
||||
patches = optional stdenv.isDarwin ./fix-error-darwin.patch;
|
||||
|
||||
buildInputs = [ libunistring ]
|
||||
buildInputs = [ libunistring ronn ]
|
||||
++ optionals stdenv.isDarwin [ libiconv help2man ];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in New Issue