diff options
author | Marius Bakke <marius@gnu.org> | 2020-06-06 16:01:08 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-06-22 17:16:39 +0200 |
commit | cafc5f8927174aca2e9198eac4d28d6cbd8738ee (patch) | |
tree | 9fe2d620890c850d1a16f22086672d777dfde1c1 | |
parent | 3d5a217d5e71821465a8653945e494205b7d511b (diff) | |
download | guix-cafc5f8927174aca2e9198eac4d28d6cbd8738ee.tar guix-cafc5f8927174aca2e9198eac4d28d6cbd8738ee.tar.gz |
gnu: ungoogled-chromium: Remove non-free file.
* gnu/packages/chromium.scm (ungoogled-chromium-source): Remove (unused) SVG
file that is licensed under a NoDerivatives license.
-rw-r--r-- | gnu/packages/chromium.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index d43e53591e..8fdaeeda9f 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm @@ -330,6 +330,15 @@ from forcing GEXP-PROMISE." (force-output) (invoke "tar" "xf" #+chromium-source) + (format #t "Removing non-free file...~%") + (force-output) + ;; This file has a CC-BY-NC clause according to LICENSES from + ;; the same directory, making it non-free. + (delete-file + (string-append + chromium-dir + "/third_party/blink/perf_tests/svg/resources/HarveyRayner.svg")) + ;; Ungoogled-Chromium contains a forked subset of the Debian ;; patches. Disable those, as we apply newer versions later. (substitute* "patches/series" |