aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/medical.scm
blob: 6c298707f50cf6f1e96ba576551e88f39bd527dc (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
61
;;; 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 databases)
  #:use-module (gnu packages python-xyz)
  #: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+)))
2024-12-22gnu: Add mono-5.1.0....* gnu/packages/dotnet.scm (mono-5.1.0-external-repo-specs, mono-5.1.0): New variables. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I87b9a3b05008b6ec6904f79051a2854f9d638dff unmush 2024-12-22gnu: Add mono-5.0.1....* gnu/packages/dotnet.scm (mono-5.0.1-external-repo-specs, mono-5.0.1): New variables. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Ie32ccd0392d5e080dba7e99f42b288d1aed37a22 unmush 2024-12-22gnu: Add mono-4.9.0....* gnu/packages/dotnet.scm (mono-4.9.0): New variable. * gnu/packages/patches/mono-4.9.0-fix-runtimemetadataversion.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: If805f64b97d27db4457503617081700d9b4f642b unmush 2024-12-22gnu: Add mono-3.12.1....* gnu/packages/dotnet.scm (mono-3.12.1-external-repo-specs, mono-3.12.1): New variables. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Icdca585ae10a930ca1456e1cbf7ac322564e5cad unmush 2024-12-22gnu: Add mono-3.0....* gnu/packages/dotnet.scm (mono-3.0.12-external-repo-specs, mono-3.0): New variables. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I9f8827b22b781d22f9aa686274fc6a88273077fb unmush 2024-12-22gnu: Add mono-2.11.4....* gnu/packages/dotnet.scm (mono-2.11.4-external-repo-specs, mono-2.11.4): New variables. (add-external-repos): New procedure. * gnu/packages/patches/mono-2.11.4-fixes.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I0736a501d590309550574941b04db8337662dc30 unmush 2024-12-22gnu: Add mono-2.6.4....* gnu/dotnet.scm (mono-2.6.4): New variable. * gnu/packages/patches/mono-2.6.4-fixes.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Ie2238810ea067724978440857150cad269d3d377 unmush 2024-12-22gnu: Add mono-2.4.2....* gnu/packages/dotnet.scm (mono-2.4.2): New variable. * gnu/packages/patches/mono-2.4.2.3-fixes.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: If1b84c2465de4ba0fbfb6824f1bcbe2b694b265e unmush 2024-12-22gnu: Add mono-1.9.1....* gnu/packages/dotnet.scm (mono-1.9.1): New variable. * gnu/packages/patches/mono-1.9.1-add-MONO_CREATE_IMAGE_VERSION.patch: New patch. * gnu/packages/patches/mono-1.9.1-fixes.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register new patches. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I013646625b9e5dbc1cd68ecaf8cf4b591dc016a0 unmush 2024-12-22gnu: Add mono-1.2.6....* gnu/packages/dotnet.scm (mono-1.2.6): New variable. * gnu/packages/patches/mono-1.2.6-bootstrap.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I02799b39eb53f01f7103e9a127428f420b287f4a unmush 2024-12-22gnu: Add pnetlib-git....* gnu/packages/dotnet.scm (pnetlib-git): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I6337d9589b6e2b1be0e673359a68cd8d247cad03 unmush 2024-12-22gnu: Add pnet-git....* gnu/packages/dotnet.scm (pnet-git): New variable. * gnu/packages/patches/pnet-fix-line-number-info.patch, gnu/packages/patches/pnet-fix-off-by-one.patch, gnu/packages/patches/pnet-newer-libgc-fix.patch, gnu/packages/patches/pnet-newer-texinfo-fix.patch: New patches. * gnu/local.mk (dist_patch_DATA): Register new patches. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Ic3e93dbaab24eb73fe9a35f711a710eed6a823a1 unmush 2024-12-22gnu: Add treecc....* gnu/packages/dotnet.scm: New module. (treecc): New package. * gnu/local.mk (GNU_SYSTEM_MODULES): Register new module. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Ic809d0aa7a8486a091beccef3dcd22a9821aeb94 unmush