aboutsummaryrefslogtreecommitdiff
path: root/tests/containers.scm
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2023-12-25 11:08:59 +0100
committerJulien Lepiller <julien@lepiller.eu>2023-12-30 22:11:23 +0100
commit2cd18578e783e4ffba24ae65f78e419615d9746e (patch)
tree5cb6806a7a276da6d1f7ed91f1a99dbe10a4a542 /tests/containers.scm
parent711f2b10dccc0a8b95781753014a703e1c31b6b6 (diff)
downloadguix-2cd18578e783e4ffba24ae65f78e419615d9746e.tar.gz
guix-2cd18578e783e4ffba24ae65f78e419615d9746e.zip
gnu: Remove ocaml4.07-ppx-inline-test.
* gnu/packages/ocaml.scm (ocaml4.07-ppx-inline-test): Remove variable. (ocaml-ppx-inline-test)[properties]: Remove variant. Change-Id: Ia7a74c7872b200d22fe56ec62de144534fc9e1ae
Diffstat (limited to 'tests/containers.scm')
0 files changed, 0 insertions, 0 deletions
packages/browser-extensions.scm (ublock-origin): Update to 1.53.0. (ublock-main-assets): Update to d573d4db0bccb3f99fa8845c2b1dcb79103007d3. (ublock-prod-assets): Update to c7cfd8fb7e4ea07051f55f370d504c78e6a8e023. Change-Id: I1c9ac9e130bb8146904229f951de9b42d5c84479 Clément Lassieur 2023-11-04gnu: passff-host: Add explicit references to inputs and remove some....This removes ‘coreutils’, ‘grep’, ‘sed’, ‘which’, ‘bash-minimal’ and ‘gnu-make’ inputs, which were only used by the Makefile and install_host_app.sh. Instead of running install_host_app.sh (through ‘make’) which does a few text substitutions, do the text substitutions with Scheme code. This simplifies things and avoids unnecessary native inputs. * gnu/packages/browser-extensions.scm (passff-host)[build-system]: Change to copy-build-system. [arguments]: Copy passff.json and passff.py. Do text substitutions on them rather than running make. Refer to ‘password-store’ and ‘python’ through inputs rather than directly. [inputs]: Add PASSWORD-STORE and PYTHON. Change-Id: I8fdb757516a7c30eae36b15f2a8d91e1445b19a5 Clément Lassieur 2023-10-29gnu: passff-host: Fix builder issues....* gnu/packages/browser-extensions.scm (passff-host)[arguments]: Use `patch-shebang` instead of wrong `substitute*`, add newline after substitution. Change-Id: I6cd1d681e9e84bdeb24943dfe1d85d996f1a262b Clément Lassieur 2023-10-28gnu: passff-host: Refactor builder....* gnu/packages/browser-extensions.scm (passff-host)[arguments]: Refactor builder. Change-Id: I42cb5e6b4808a8b2025d20654c57392f79c01a5c Clément Lassieur 2023-10-25gnu: Add passff....* gnu/packages/browser-extensions.scm (passff-host): New variable. (passff): New variable. Change-Id: I0f6f4b0c319e5cffd0940421a4d8bdc73d8d806b Clément Lassieur 2023-10-23gnu: icecat: Support Guix packaged extensions and native manifests....* gnu/build/icecat-extension.scm: New file with a MAKE-ICECAT-EXTENSION procedure that makes sure the add-on directory is a symlink, so that Icecat can normalize it into a package store path. * gnu/local.mk (dist_patch_DATA): Register it, as well as new patches. * gnu/packages/browser-extensions.scm (ublock-origin)[properties]: Store the add-on ID so that it is accessible in MAKE-ICECAT-EXTENSION. [arguments]: Use the add-on ID as root directory. (ublock-origin/icecat): New procedure. * gnu/packages/gnuzilla.scm (icecat-minimal)[arguments]: Rewrite the unused 'apply-guix-specific-patches' phase so that it applies the following two patches. [native-search-paths]: New field. * gnu/packages/patches/icecat-compare-paths.patch: New patch that compares add-on paths (which are package store paths) to detect package changes. * gnu/packages/patches/icecat-use-system-wide-dir.patch: New patch that replaces "/usr/lib/mozilla" (the system-wide directory for extensions and native manifests) with "$ICECAT_SYSTEM_DIR". Clément Lassieur 2023-09-28gnu: ublock-origin: Update to 1.51.0....* gnu/packages/browser-extensions.scm (ublock-main-assets): Add origin. (ublock-prod-assets): Add origin. (ublock-origin): Update to 1.51.0. [source]: Dropped (recursive? #t). [arguments]: Rewrite phase do-not-depend-on-git. Use gexp. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves