mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
icu58: Fix evaluation
This commit is contained in:
parent
f51a7ddd11
commit
80cb13b728
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
args @ { stdenv, fetchurl, fetchpatch, fixDarwinDylibNames }:
|
||||
fetchurl:
|
||||
let
|
||||
keywordFix = fetchurl {
|
||||
url = "http://bugs.icu-project.org/trac/changeset/39484?format=diff";
|
||||
|
@ -11,4 +11,4 @@ import ./base.nix {
|
|||
sha256 = "036shcb3f8bm1lynhlsb4kpjm9s9c2vdiir01vg216rs2l8482ib";
|
||||
patches = [ keywordFix ];
|
||||
patchFlags = "-p4";
|
||||
} args
|
||||
}
|
||||
|
|
|
@ -9210,7 +9210,7 @@ with pkgs;
|
|||
|
||||
hyena = callPackage ../development/libraries/hyena { };
|
||||
|
||||
icu58 = callPackage ../development/libraries/icu/58.nix {
|
||||
icu58 = callPackage (import ../development/libraries/icu/58.nix fetchurl) {
|
||||
nativeBuildRoot = buildPackages.icu58.override { buildRootOnly = true; };
|
||||
} //
|
||||
(stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) {
|
||||
|
|
Loading…
Reference in a new issue