From 18c248547dd5dc0426a4a72ad90baed719f92c04 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 21 Nov 2021 23:52:03 +0300 Subject: fix(3p/overlays): Downgrade Nix to stable version for nix-serve Where I'm using stable in the non-versioning sense of the word. https: //github.com/edolstra/nix-serve/issues/28 Change-Id: I87869a62bc0f3b289950a79aabd4d2041390bb09 --- third_party/overlays/tvl.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'third_party') diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 278fe13016..d120528776 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -60,4 +60,8 @@ self: super: { steam = super.steam.override { extraPkgs = pkgs: with pkgs; [ pango harfbuzz libthai ]; }; + + # nix-serve does not work with nix 2.4 + # https://github.com/edolstra/nix-serve/issues/28 + nix-serve = super.nix-serve.override { nix = super.nix_2_3; }; } -- cgit 1.4.1