firefox{,-beta,-devedition,-esr-128}-unwrapped: fix location of update script

This commit is contained in:
jopejoe1 2024-11-14 23:29:38 +01:00
parent 2104a4ee5f
commit 362f26d024
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";
};
}