From 7b63a3b996aa6f44592a96284a1ca8683a70ad9a Mon Sep 17 00:00:00 2001 From: Ivan Kozik Date: Thu, 27 Apr 2023 09:54:08 +0000 Subject: [PATCH] nix-serve-ng: use upstream commit that is compatible with Nix 2.13 --- pkgs/development/haskell-modules/configuration-nix.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 7ef090770635d..40ecae82725a5 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -271,11 +271,14 @@ self: super: builtins.intersectAttrs super { src = assert super.nix-serve-ng.version == "1.0.0"; # Workaround missing files in sdist # https://github.com/aristanetworks/nix-serve-ng/issues/10 + # + # Workaround for libstore incompatibility with Nix 2.13 + # https://github.com/aristanetworks/nix-serve-ng/issues/22 pkgs.fetchFromGitHub { repo = "nix-serve-ng"; owner = "aristanetworks"; - rev = "433f70f4daae156b84853f5aaa11987aa5ce7277"; - sha256 = "0mqp67z5mi8rsjahdh395n7ppf0b65k8rd3pvnl281g02rbr69y2"; + rev = "dabf46d65d8e3be80fa2eacd229eb3e621add4bd"; + hash = "sha256-SoJJ3rMtDMfUzBSzuGMY538HDIj/s8bPf8CjIkpqY2w="; }; } (addPkgconfigDepend pkgs.boost.dev super.nix-serve-ng);