joinmarket: fix for NixOS 25.11

Temporarily add nixpkgs-25.05 for joinmarket (see code comment).
This commit is contained in:
Erik Arvstedt
2025-12-24 08:33:48 +01:00
parent 4ba311c425
commit 3b9406a4d2
8 changed files with 51 additions and 15 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ in rec {
toLines = pkgs: builtins.concatStringsSep "\n " (builtins.attrNames pkgs);
in ''
# This file is generated by ../helper/update-flake.nix
pkgs: pkgsUnstable:
pkgs: pkgsUnstable: pkgs-25_05:
{
inherit (pkgs)
${toLines versions.stable};
@@ -72,7 +72,7 @@ in rec {
inherit (pkgsUnstable)
${toLines versions.unstable};
inherit pkgs pkgsUnstable;
inherit pkgs pkgsUnstable pkgs-25_05;
}
'';
}