From fff64324e0b425786a5061dfa95f723c74a82e1f Mon Sep 17 00:00:00 2001 From: Lily Foster Date: Thu, 7 May 2026 15:53:38 -0400 Subject: [PATCH] Avoid duplicating nixpkgs in the store harder --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9cb820b..2f6261d 100644 --- a/flake.nix +++ b/flake.nix @@ -308,7 +308,7 @@ inherit sourceVersion; hash = "sha256-${hash}"; self = packages.${version}; - passthruFun = callPackage "${pkgs.path}/pkgs/development/interpreters/python/passthrufun.nix" { }; + passthruFun = callPackage "${toString pkgs.path}/pkgs/development/interpreters/python/passthrufun.nix" { }; } // lib.optionalAttrs (sourceVersion.major == "3") { noldconfigPatch = ./patches + "/${sourceVersion.major}.${sourceVersion.minor}-no-ldconfig.patch";