mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
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:
parent
343ee03765
commit
f6fb60c03a
5 changed files with 34 additions and 26 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue