diff options
| author | Weijia Wang <9713184+wegank@users.noreply.github.com> | 2022-01-05 23:55:04 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-01-06 06:43:53 +0000 |
| commit | 17de6590083e80981c4459354530ca6411de485b (patch) | |
| tree | 542ff16806d04e4521de55a38156d53dcde3d771 | |
| parent | Merge pull request #153642 from NixOS/backport-153109-to-release-21.11 (diff) | |
| download | nixpkgs-origin/backport-153630-to-release-21.11.tar.gz | |
ocamlPackages.uunf: fix aarch64-linux buildorigin/backport-153630-to-release-21.11
(cherry picked from commit b0d8fd8c957ce40a4073e7da7a2b5c263120f88f)
| -rw-r--r-- | pkgs/development/ocaml-modules/uunf/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/uunf/default.nix b/pkgs/development/ocaml-modules/uunf/default.nix index b71442a6a8b3..073e6865fcdd 100644 --- a/pkgs/development/ocaml-modules/uunf/default.nix +++ b/pkgs/development/ocaml-modules/uunf/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation { propagatedBuildInputs = [ uchar ]; + prePatch = lib.optionalString stdenv.isAarch64 "ulimit -s 16384"; + inherit (topkg) buildPhase installPhase; meta = with lib; { |
