diff options
author | Zacchaeus Scheffer <[email protected]> | 2024-03-17 13:37:27 -0400 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2024-03-17 13:40:12 -0400 |
commit | 059c9ed104c91f7a537f369c4524b91d6cf8a13e (patch) | |
tree | 2e4da4a2114f46427c50d73c9ac920f936724420 | |
parent | d1b6d77aaef3c2a7ecc930de1cce2b9ac20203bf (diff) |
gnu: OpenTaxSolver: Update for 2023 tax filing.
* gnu/packages/finance.scm (opentaxsolver)<tax-year, ots-version>:
Update for 2023 taxes.
Change-Id: I4d740951eff74072acd80948cfac17100345f55c
Signed-off-by: Leo Famulari <[email protected]>
-rw-r--r-- | gnu/packages/finance.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 8c30bd1a30..e8491713bb 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -2359,11 +2359,11 @@ pool.") (define-public opentaxsolver ;; The OTS version is formatted like tax-year_version. So, at time of - ;; writing, the version is 2022_20.00. Each part of this is used in + ;; writing, the version is 2023_21.03. Each part of this is used in ;; different places in the source uri, so it's convenient to have them ;; separately like this. - (let ((tax-year "2022") - (ots-version "20.00")) + (let ((tax-year "2023") + (ots-version "21.03")) (package (name "opentaxsolver") (version (string-append tax-year "_" ots-version)) @@ -2375,7 +2375,7 @@ pool.") "_linux/OpenTaxSolver" version "_linux64.tgz")) (sha256 (base32 - "06k0a72bmwdmr71dvrp8b4vl8vilnggsh92hrp7wjdgcjj9m074w")) + "1i543bvclnyiwnyjlskhr2bxlsigggvwdhg2519rf12lsghgfszq")) (patches (search-patches "opentaxsolver-file-browser-fix.patch")))) (build-system glib-or-gtk-build-system) (arguments |