firefly-iii: fix version-regex so that ryantm can update package properly & firefly-iii-data-importer: fix version-regex so that ryantm can update package properly (#417027)
This commit is contained in:
@@ -66,7 +66,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
passthru = {
|
||||
phpPackage = php84;
|
||||
tests = nixosTests.firefly-iii-data-importer;
|
||||
updateScript = nix-update-script { extraArgs = [ "--version-regex='v([0-9]+\.[0-9]+\.[0-9]+)'" ]; };
|
||||
updateScript = nix-update-script {
|
||||
extraArgs = [
|
||||
"--version-regex"
|
||||
"v(\\d+\\.\\d+\\.\\d+)"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
|
||||
@@ -55,7 +55,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
passthru = {
|
||||
phpPackage = php84;
|
||||
tests = nixosTests.firefly-iii;
|
||||
updateScript = nix-update-script { extraArgs = [ "--version-regex='v([0-9]+\.[0-9]+\.[0-9]+)'" ]; };
|
||||
updateScript = nix-update-script {
|
||||
extraArgs = [
|
||||
"--version-regex"
|
||||
"v(\\d+\\.\\d+\\.\\d+)"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
|
||||
Reference in New Issue
Block a user