GNU Guix consists of Scheme code that implements the deployment model of the Nix package management tool. In fact, it currently talks to a build daemon whose code comes from Nix (see the manual for details.) Nix was initially written by Eelco Dolstra; other people have been contributing to it. See `nix/AUTHORS' for details. The list of GNU Guix contributors is now generated from the output of 'git log' and written to this file, as can be seen in release tarballs. src='https://git.koszko.org/cgit-static/cgit.png' alt='cgit logo'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/geo.scm
AgeCommit message (Expand)Author
2024-09-02gnu: python-metpy: Update to 1.6.3....* gnu/packages/geo.scm (python-metpy): Update to 1.6.3. [source]: Adjust URI. Change-Id: I36f26862188355ee2e7b2dbbb5222958e2562178 Vinicius Monego
2024-08-31gnu: grass: Fix build....* gnu/packages/geo.scm (grass)[arguments]: Use 'search-input-*' instead of 'assoc-ref' in 'configure' phase. Change-Id: I34de3bb219163e470561493efb5c41b6dd1e038f Guillaume Le Vaillant
2024-08-31gnu: geo: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/geo.scm (grass): Remove input labels and trailing #t. [inputs]: Add bash-minimal. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Co-authored-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ic9d1942098cbfa1d71a81b1f7e0dea352850a4ce Maxime Devos
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