don't do fetchTarball

This commit is contained in:
nora 2025-08-04 22:18:54 +02:00
parent 9121101308
commit db714febbf
9 changed files with 132 additions and 27 deletions

View file

@ -1,8 +1,8 @@
{ pkgs, lib, my-projects-versions, ... }:
let
does-it-build-base = (import (fetchTarball "https://github.com/Noratrieb/does-it-build/archive/${my-projects-versions.does-it-build}.tar.gz")) { inherit pkgs; };
does-it-build-base = (import (pkgs.fetchFromGitHub my-projects-versions.does-it-build.fetchFromGitHub)) { inherit pkgs; };
does-it-build = does-it-build-base.overrideAttrs (finalAttrs: previousAttrs: {
DOES_IT_BUILD_OVERRIDE_VERSION = my-projects-versions.does-it-build;
DOES_IT_BUILD_OVERRIDE_VERSION = my-projects-versions.does-it-build.commit;
});
in
{