mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-01 06:45:55 +02:00
76ac03cb0b
* guix/import/mix.scm: New file. * guix/import/mix/mix-lock.scm: New file. * guix/scripts/import/mix.scm: New file. * tests/import/mix.scm: New file. * Makefile.am (MODULES, SCM_TESTS): Register them. * etc/teams.scm (beam): Likewise. * gnu/packages/beam-apps.scm: New file. * gnu/packages/beam-packages.scm: New file. * gnu/packages/beam-sources.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Register them. * etc/teams.scm (beam): Likewise. * guix/build-system/mix.scm (define-mix-inputs): New macro. (beam-name->package-name, hexpm-source, mix-inputs): New procedures. (mix-build): Add new variables. * guix/build/mix-build-system.scm (unpack-vendorize, symlink-vendorize, beam-package?): New procedures. (%standard-phases): Add new phases. (build, check, install): Add vendoring support. (%elixir-prefix, %beam-prefix, %vendorize-env-var): Add new symbols. (strip-prefix, package-name->elixir-name): Add support for beam-prefixed packages. * guix/scripts/import.scm (process-args): Add 'mix' importer. * etc/teams.scm (beam)<#:description>: Add Mix importer mention. * etc/teams.scm (beam)<#:scope>: Add "tests/import/hexpm.scm". * CODEOWNERS: Regenerate file. * guix/import/hexpm.scm (dependencies->package-names, hexpm->guix-package): Add optional mix-inputs support. * guix/scripts/import/hexpm.scm (show-help, %options, parse-options): Likewise. * tests/import/hexpm.scm: Likewise. * guix/import/hexpm.scm (hexpm->guix-package): Fix typo. * doc/guix.texi: Add initial documentation for mix importer and new option for hexpm importer. * doc/guix-cookbook.texi: Add example of packaging Elixir app. Change-Id: I5d11f8be111963fbac2fd6ab5fd0bd644f9488b0 Signed-off-by: Giacomo Leidi <therewasa@fishinthecalculator.me>
44 lines
1.3 KiB
Scheme
44 lines
1.3 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
||
;;; Copyright © 2025 Igorj Gorjaĉev <igor@goryachev.org>
|
||
;;;
|
||
;;; 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 <http://www.gnu.org/licenses/>.
|
||
|
||
(define-module (gnu packages beam-packages)
|
||
#:use-module (guix gexp)
|
||
#:use-module (guix packages)
|
||
#:use-module (guix download)
|
||
#:use-module (guix git-download)
|
||
#:use-module (guix build-system mix)
|
||
#:use-module (gnu packages beam-sources)
|
||
#:export (lookup-mix-inputs))
|
||
|
||
;;;
|
||
;;; This file is managed by ‘guix import’. Do NOT add definitions manually.
|
||
;;;
|
||
;;; BEAM libraries fetched from hex.pm.
|
||
;;;
|
||
|
||
(define aaaa-separator 'begin-of-beam-packages)
|
||
|
||
(define cccc-separator 'end-of-beam-packages)
|
||
|
||
|
||
;;;
|
||
;;; Mix inputs.
|
||
;;;
|
||
|
||
(define-mix-inputs lookup-mix-inputs)
|