firefox{,-beta,-devedition,-esr-128}-unwrapped: fix location of updat… (#356018)

This commit is contained in:
jopejoe1 2024-11-15 01:00:19 +01:00 committed by GitHub
commit dc74870c2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ buildMozillaMach rec {
tests = {
inherit (nixosTests) firefox-beta;
};
updateScript = callPackage ./update.nix {
updateScript = callPackage ../update.nix {
attrPath = "firefox-beta-unwrapped";
versionSuffix = "b[0-9]*";
};

View File

@ -35,7 +35,7 @@ buildMozillaMach rec {
tests = {
inherit (nixosTests) firefox-devedition;
};
updateScript = callPackage ./update.nix {
updateScript = callPackage ../update.nix {
attrPath = "firefox-devedition-unwrapped";
versionSuffix = "b[0-9]*";
baseUrl = "https://archive.mozilla.org/pub/devedition/releases/";

View File

@ -32,7 +32,7 @@ buildMozillaMach rec {
tests = {
inherit (nixosTests) firefox-esr-128;
};
updateScript = callPackage ./update.nix {
updateScript = callPackage ../update.nix {
attrPath = "firefox-esr-128-unwrapped";
versionPrefix = "128";
versionSuffix = "esr";

View File

@ -35,7 +35,7 @@ buildMozillaMach rec {
tests = {
inherit (nixosTests) firefox;
};
updateScript = callPackage ./update.nix {
updateScript = callPackage ../update.nix {
attrPath = "firefox-unwrapped";
};
}