aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/medical.scm
blob: c0d9d597b70ea9a857b37432d87c6b77a517e593 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2017 Quiliro <quiliro@fsfla.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 medical)
  #:use-module (guix build-system python)
  #:use-module (guix download)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (gnu packages python)
  #:use-module (gnu packages qt))

(define-public openmolar-1
  (package
   (name "openmolar")
   (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
               "1cfdzfbi6wslw7k0dc6ad6xrgs75iwsl91cg73w4myswaqqkfk3z"))))
   (build-system python-build-system)
   (arguments
    `(#:use-setuptools? #f
      #:phases
      (modify-phases %standard-phases
        (add-after 'unpack 'patch-/usr
          (lambda* (#:key outputs #:allow-other-keys)
            (substitute* "setup.py"
              (("/usr") (assoc-ref outputs "out")))
            #t)))))
   (inputs
    `(("python-pyqt+qscintilla" ,python-pyqt+qscintilla)
      ("python-mysqlclient" ,python-mysqlclient)
      ("qscintilla" ,qscintilla)))
   (home-page "https://openmolar.com/om1")
   (synopsis "Dental practice management software")
   (description "Openmolar is a dental practice management suite.  Its
functionality includes appointments, patient records, treatment planning,
billing etc.  It is a full featured, reliable and thoroughly tested
application and has been translated into many languages.")
   (license gpl3+)))
an>Ludovic Courtès 2018-06-18self: Make (guix config) generation really stateless....Ludovic Courtès 2018-06-09self: Produce a complete package with the 'guix' command....Ludovic Courtès 2018-04-08build-self: Add missing 'close-pipe' call....Ludovic Courtès 2018-04-08build-self: Use (guix self)....Ludovic Courtès 2018-02-15pull: Update the %sbindir variable in (guix config) when building....Diego Nicola Barbato 2017-12-13pull: Add (guix profiling) to the build environment....Ludovic Courtès 2017-12-07pull: Build with an ABI-compatible Guile....Ludovic Courtès 2017-11-21Revert "Add (guix self) and use it when pulling."...Ludovic Courtès 2017-11-21Add (guix self) and use it when pulling....Ludovic Courtès 2017-10-23pull: Add (guix build compile) to the mix....Ludovic Courtès 2017-08-02pull: Fetch source code from Git....Ludovic Courtès 2017-06-09pull: Add a dependency to guile-git....Mathieu Othacehe 2017-05-09pull: Build with the matching Guile major version....Ludovic Courtès 2016-11-27pull: Hack to allow compilation with older Guile-SSH packages....Ludovic Courtès 2016-11-26pull: Add guile-ssh to the dependencies....宋文武 2016-07-20pull: Update the version string....Ludovic Courtès 2016-07-20pull: Install (guix config) module to override the user's one....Ludovic Courtès 2014-11-09pull: Use the build procedure provided by the newly-downloaded Guix....Ludovic Courtès