quiliro

OpenMolar Scheme file for Guix

May 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 2.03 KB | None | 0 0
  1. Unfinished
  2.  
  3. ;;; GNU Guix --- Functional package management for GNU
  4. ;;; Copyright © 2017 Quiliro Ordóñez <quiliro@fsfla.org>
  5. ;;;
  6. ;;; This file is part of GNU Guix.
  7. ;;;
  8. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  9. ;;; under the terms of the GNU General Public License as published by
  10. ;;; the Free Software Foundation; either version 3 of the License, or (at
  11. ;;; your option) any later version.
  12. ;;;
  13. ;;; GNU Guix is distributed in the hope that it will be useful, but
  14. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ;;; GNU General Public License for more details.
  17. ;;;
  18. ;;; You should have received a copy of the GNU General Public License
  19. ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
  20.  
  21. (define-module (gnu packages openmolar)
  22.   #:use-module (guix build-system gnu)
  23.   #:use-module (guix download)
  24.   #:use-module (guix licenses)
  25.   #:use-module (guix packages))
  26.  
  27. (define-public openmolar
  28.   (package
  29.    (name "openmolar")
  30.    (version "1.1")
  31.    (source (origin
  32.             (method url-fetch)
  33.             (uri (string-append
  34.                   "https://github.com/rowinggolfer/openmolar1.git"
  35.                   version ".tar.gz"))
  36.             (sha256
  37.              (base32
  38.               "1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9"))))
  39.    (build-system gnu-build-system)
  40.    (arguments
  41.     `(#:make-flags (list "CC=gcc"
  42.                          (string-append "PREFIX=" (assoc-ref %outputs "out")))
  43.       #:phases (modify-phases %standard-phases
  44.                  (delete 'configure)
  45.                  (delete 'check)))) ; no test suite
  46.    (synopsis "Session management in a clean and simple way")
  47.    (description "abduco provides session management i.e. it allows programs to
  48. be run independently from their controlling terminal.  That is, programs can
  49. be detached---run in the background---and then later reattached.")
  50.    (home-page "http://www.brain-dump.org/projects/abduco/")
  51.    (license isc)))
Add Comment
Please, Sign In to add comment