;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Maya Tomasek ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages zig-xyz) #:use-module (guix packages) #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) #:use-module (guix gexp) #:use-module (gnu packages) #:use-module (gnu packages zig) #:use-module (gnu packages python)) (define-public zig-zls (package (name "zig-zls") (version "0.9.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/zigtools/zls") (commit version) (recursive? #t))) (file-name (git-file-name name version)) (sha256 (base32 "1hhs7dz9rpshfd1a7x5swmix2rmh53vsqskh3mzqlrj2lgb3cnii")))) (build-system gnu-build-system) (inputs (list zig python)) (arguments (list #:phases #~(modify-phases %standard-phases (delete 'configure) (replace 'build (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (setenv "ZIG_GLOBAL_CACHE_DIR" (string-append (getcwd) "/zig-cache")) (invoke "zig" "build" "install" "-Drelease-safe" "--prefix" out)))) (delete 'install) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "zig" "build" "test"))))))) (synopsis "Zig language server") (description "Zig Language Server is a language server implementing the @acronym{LSP, Language Server Protocol} for the Zig programming language.") (home-page "https://github.com/zigtools/zls") (license license:expat))) d>gnu: mscgen: Fix dependencies....* gnu/packages/graph.scm (mscgen) [inputs]: Add fontconfig, freetype, libjpeg-turbo, libpng, zlib. Change-Id: If185bcb2f786f6493c20040b47e93440987d7243 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sébastien Lerique 2024-08-31gnu: python-graph-tool: Import the correct set of modules....* gnu/packages/graph.scm (python-graph-tool) [arguments] <modules>: Replace %default-gnu-imported-modules with %default-gnu-modules. Change-Id: I9d0d70a386e1131250feb16ab23089c66f6dec8e Maxim Cournoyer 2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer 2024-05-05gnu: python-graphtools: Fix tests....* gnu/packages/graph.scm (python-graphtools)[arguments]: Add 'patch-tests phase. Change-Id: I5ffb4321ddd7e33e812bcb1cf67cee069b07b5f8 Ricardo Wurmus 2024-05-05gnu: python-pygsp: Add missing input....* gnu/packages/graph.scm (python-pygsp)[native-inputs]: Add python-pytest. Change-Id: I94cd4e160dcbecfbb491c0d101bcbeb761189876 Ricardo Wurmus 2024-04-04gnu: igraph: Switch to openblas....* gnu/packages/graph.scm (igraph): Switch input dependency from lapack to openblas. Change-Id: Idcaada16496d2854cce7375b4d9fa647430206eb Signed-off-by: Ludovic Courtès <ludo@gnu.org> Romain GARBAGE 2024-03-31gnu: python-plotly: Update to 5.20.0....* gnu/packages/graph.scm (python-plotly): Update to 5.20.0. Change-Id: I0df931646677dbceb1fea7912781bc74e0207dcb Vinicius Monego 2024-02-25gnu: python-graph-tool: Limit build to 1 core....* gnu/packages/graph.scm (python-graph-tool)[arguments]: Set parallel-build to #false. Change-Id: Id181554cda028c6e9985f029a3ef98d14efb0c27 Efraim Flashner