Paste number 349967: | openmolar1 guix package |
Pasted by: | quiliro |
When: | 5 years, 1 month ago |
Share: | Tweet this! | http://paste.lisp.org/+7I1B |
Channel: | None |
Paste contents: |
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name>
;;;
;;; 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 medical)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix licenses)
#:use-module (guix packages))
(define-public openmolar1
(package
(name "openmolar1")
(version "1.0.15-gd81f9e5")
(source (origin
(method url-fetch)
(uri (string-append
"https://static.openmolar.com/om1/releases/openmolar-"
version ".tar.gz"))
(sha256
(base32
"1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9"))))
(build-system python-build-system)
(synopsis "Dental practice management software")
(description "Openmolar1 is a dental practice management suite. Its functionality include appointments, patient records, treatment planning, billing etc. It is a full featured, reliable and thoroughly tested application which is still undergoing development regularly. It has been translated into many languages. I hope you try it out! The application is released under a free-software license - GPLv3. Those with programming talent are invited to contribute.")
(home-page "https://openmolar.com/om1/")
(license gpl3)))
This paste has no annotations.