From f6f8ef7457ce4344fdb0023727b4314db9c9f4fd Mon Sep 17 00:00:00 2001 From: Danial Behzadi Date: Wed, 12 Feb 2025 16:53:00 +0330 Subject: [PATCH] gnu: tractor: Invoke glib-compile-schemas. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/tor.scm (tractor)[arguments]: In ‘install-gschema’ phase, invoke ‘glib-compile-schemas’. Signed-off-by: Ludovic Courtès Change-Id: Ifaa7704dad7295f54494d826419f9c209da34f85 --- gnu/packages/tor.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index f191c4a777e..b22daf31407 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -484,7 +484,9 @@ Potential client and exit connections are scrubbed of sensitive information.") (add-after 'install 'install-gschema (lambda _ (let ((schemas (string-append #$output "/share/glib-2.0/schemas"))) - (install-file "src/tractor/tractor.gschema.xml" schemas))))))) + (install-file "src/tractor/tractor.gschema.xml" schemas) + ;; The following line is needed for packages having tractor as input. + (invoke "glib-compile-schemas" schemas))))))) (home-page "https://framagit.org/tractor") (synopsis "Setup an onion routing proxy") (description