diff options
author | Marius Bakke <marius@gnu.org> | 2022-12-08 11:39:26 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-12-08 13:10:46 +0100 |
commit | 4d162d70a5203d3dd9827c0fee3f4a5e563dfd85 (patch) | |
tree | 8ffc4967afd36974e166552a34c15ecbcb1d6da1 /gnu/packages/chromium.scm | |
parent | 8536cf7bdd938ec5489670b590b3fc5d801d4f04 (diff) |
gnu: ungoogled-chromium: Remove obsolete workaround.
* gnu/packages/chromium.scm (ungoogled-chromium)[version]: Remove conditional.
Diffstat (limited to 'gnu/packages/chromium.scm')
-rw-r--r-- | gnu/packages/chromium.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index cdc07da005..983a754215 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm @@ -482,12 +482,7 @@ (define-public ungoogled-chromium (package (name "ungoogled-chromium") - (version (if (string-prefix? %chromium-version %ungoogled-revision) - %ungoogled-revision - ;; ungoogled-chromium version tags always have a "-1" suffix, - ;; so we can hijack "-0" in cases where the Chromium source - ;; is newer than the latest available tag. - (string-append %chromium-version "-0"))) + (version %ungoogled-revision) (synopsis "Graphical web browser") (source (origin (method url-fetch) |