From d3c330019271f5796a71e726e91d846aa4c32627 Mon Sep 17 00:00:00 2001 From: facebook-github-bot Date: Tue, 11 Oct 2022 16:31:39 -0700 Subject: [PATCH] Update flake lock file (#9243) Summary: This diff updates flake lock file and fixes compilation errors. It pins libdwarf to the version 20210528 because nixpkgs unstable now use 0.4.2 as the default version since https://github.com/NixOS/nixpkgs/pull/195052, which is not compatible with HHVM. Pull Request resolved: https://github.com/facebook/hhvm/pull/9243 Test Plan: See GitHub Actions Reviewed By: alexeyt Differential Revision: D40131807 Pulled By: Atry fbshipit-source-id: feb4d07d7a2a27119077c17b2df936a889f93ca0 --- flake.lock | 6 +++--- hhvm.nix | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 23246058be6..e53ef39da81 100644 --- a/flake.lock +++ b/flake.lock @@ -33,11 +33,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1664847737, - "narHash": "sha256-Wxl0CtRH3Vo8+qEZ/PbCcx+9D8wEEi56tJPmROum2ss=", + "lastModified": 1665387968, + "narHash": "sha256-ooKVuc+8zIs58zpMqW3z78qokwN1nkv2Iv6dMqqKjXI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "de80d1d04ee691279e1302a1128c082bbda3ab01", + "rev": "91d1eb9f2a9c4e3c9d68a59f6c0cada8c63d5340", "type": "github" }, "original": { diff --git a/hhvm.nix b/hhvm.nix index e7dc79ba6d7..37edfff29e5 100644 --- a/hhvm.nix +++ b/hhvm.nix @@ -30,7 +30,7 @@ , lastModifiedDate , lib , libcap -, libdwarf +, libdwarf_20210528 , libedit , libelf , libevent @@ -168,7 +168,7 @@ stdenv.mkDerivation rec { (if isDefaultStdlib then icu else icu.override { inherit stdenv; }) imagemagick6 jemalloc - libdwarf + libdwarf_20210528 libedit libelf libevent -- 2.11.4.GIT