2019-07-20 14:49:00 +00:00
|
|
|
;;; guix.scm -- Guix package definition
|
2018-07-22 06:41:48 +00:00
|
|
|
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes --- Maxwell Equations of Software
|
2019-07-20 14:49:00 +00:00
|
|
|
;;; Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-07-22 06:41:48 +00:00
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; This file is part of GNU Mes.
|
2018-07-22 06:41:48 +00:00
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes is free software; you can redistribute it and/or modify it
|
2018-07-22 06:41:48 +00:00
|
|
|
;;; 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.
|
|
|
|
;;;
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; GNU Mes is distributed in the hope that it will be useful, but
|
2018-07-22 06:41:48 +00:00
|
|
|
;;; 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
|
2018-07-22 12:24:36 +00:00
|
|
|
;;; along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2018-07-22 06:41:48 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;; GNU Guix development package. To build and install, run:
|
|
|
|
;;
|
2019-07-20 14:49:00 +00:00
|
|
|
;; guix package -f guix.scm
|
2018-07-22 06:41:48 +00:00
|
|
|
;;
|
|
|
|
;; To build it, but not install it, run:
|
|
|
|
;;
|
2019-07-20 14:49:00 +00:00
|
|
|
;; guix build -f guix.scm
|
2018-07-22 06:41:48 +00:00
|
|
|
;;
|
|
|
|
;; To use as the basis for a development environment, run:
|
|
|
|
;;
|
2019-07-20 14:49:00 +00:00
|
|
|
;; guix environment -l guix.scm
|
2018-07-22 06:41:48 +00:00
|
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
|
2019-07-20 14:49:00 +00:00
|
|
|
(define %source-dir (dirname (current-filename)))
|
|
|
|
(add-to-load-path (string-append %source-dir "/guix"))
|
|
|
|
|
2018-07-22 06:41:48 +00:00
|
|
|
(use-modules (git mes))
|
|
|
|
|
|
|
|
;; Return it here so `guix build/environment/package' can consume it directly.
|
|
|
|
mes.git
|