update does-it-build

now needs a new rust version so let's pull in the rust from 25.11 lol
This commit is contained in:
nora 2025-11-29 00:14:47 +01:00
parent 343ee03765
commit f6fb60c03a
5 changed files with 34 additions and 26 deletions

View file

@ -1,9 +1,11 @@
{ pkgs, lib, config, my-projects-versions, ... }:
{ pkgs, nixpkgs-next, lib, config, my-projects-versions, ... }:
let
does-it-build-base = (import (pkgs.fetchFromGitHub my-projects-versions.does-it-build.fetchFromGitHub)) { inherit pkgs; };
does-it-build-base = (import (pkgs.fetchFromGitHub my-projects-versions.does-it-build.fetchFromGitHub)) {
# needs a recent rust version.
pkgs = nixpkgs-next;
};
does-it-build = does-it-build-base.overrideAttrs (finalAttrs: previousAttrs: {
DOES_IT_BUILD_OVERRIDE_VERSION = my-projects-versions.does-it-build.commit;
RUSTFLAGS = "-Cforce-frame-pointers=true";
});
in
{