mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-02 15:13:04 +02:00
change input to new-style def
This commit is contained in:
parent
09e78ddc85
commit
65ca6fb4ae
3 changed files with 33 additions and 38 deletions
|
@ -41,9 +41,8 @@
|
|||
(description "MPIX. More to come. FIXIT")
|
||||
(home-page "https://www.gnu.org/software/hello/")
|
||||
(license license:gpl3+)
|
||||
(inputs `(("libevent" ,libevent)
|
||||
("hwloc" ,hwloc-2 "lib")
|
||||
("perl" ,perl)))))
|
||||
(inputs (list libevent
|
||||
`(,hwloc-2 "lib") perl))))
|
||||
|
||||
(define-public openpmix-4.1.0
|
||||
(package
|
||||
|
@ -57,10 +56,8 @@
|
|||
(sha256
|
||||
(base32
|
||||
"0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql"))))
|
||||
(inputs `(("python" ,python)
|
||||
("zlib" ,zlib)
|
||||
("pandoc" ,pandoc)
|
||||
,@(package-inputs openpmix-3.1.5)))))
|
||||
(inputs (modify-inputs (package-inputs openpmix-3.1.5)
|
||||
(prepend python zlib pandoc)))))
|
||||
|
||||
(define-public openpmix
|
||||
openpmix-4.1.0)
|
||||
|
@ -86,8 +83,8 @@
|
|||
(package
|
||||
(inherit slurm-20.02-latest)
|
||||
(name "slurm-glicid")
|
||||
(inputs `(("gtk+-2" ,gtk+-2)
|
||||
("mariadb:dev" ,mariadb "dev")
|
||||
(inputs `(("gtk+" ,gtk+-2)
|
||||
("mariadb" ,mariadb "dev")
|
||||
,@(package-inputs slurm-20.02-latest)))))
|
||||
|
||||
(define-public slurm-20.11-upstream
|
||||
|
@ -113,8 +110,8 @@
|
|||
(package
|
||||
(inherit slurm-20.11-latest)
|
||||
(name "slurm-glicid")
|
||||
(inputs `(("gtk+-2" ,gtk+-2)
|
||||
("mariadb:dev" ,mariadb "dev")
|
||||
(inputs `(("gtk+" ,gtk+-2)
|
||||
("mariadb" ,mariadb "dev")
|
||||
,@(package-inputs slurm-20.11-latest)))))
|
||||
|
||||
(define-public slurm-21.08-upstream
|
||||
|
@ -137,8 +134,8 @@
|
|||
(package
|
||||
(inherit slurm-21.08-latest)
|
||||
(name "slurm-glicid")
|
||||
(inputs `(("gtk+-2" ,gtk+-2)
|
||||
("mariadb:dev" ,mariadb "dev")
|
||||
(inputs `(("gtk+" ,gtk+-2)
|
||||
("mariadb" ,mariadb "dev")
|
||||
,@(package-inputs slurm-21.08-latest)))))
|
||||
|
||||
(define-public slurm-22.05-upstream
|
||||
|
@ -161,8 +158,8 @@
|
|||
(package
|
||||
(inherit slurm-22.05-latest)
|
||||
(name "slurm-glicid")
|
||||
(inputs `(("gtk+-2" ,gtk+-2)
|
||||
("mariadb:dev" ,mariadb "dev")
|
||||
(inputs `(("gtk+" ,gtk+-2)
|
||||
("mariadb" ,mariadb "dev")
|
||||
,@(package-inputs slurm-22.05-latest)))))
|
||||
|
||||
(define-public slurm-23.02-upstream
|
||||
|
@ -188,13 +185,13 @@
|
|||
(package
|
||||
(inherit slurm-23.02-latest)
|
||||
(name "slurm-glicid")
|
||||
(inputs `(("gtk+-2" ,gtk+-2)
|
||||
("mariadb:dev" ,mariadb "dev")
|
||||
("ucx" ,ucx-latest-glicid) ;not autotested by config
|
||||
("podman" ,podman)
|
||||
("lua" ,lua)
|
||||
("lz4" ,lz4)
|
||||
,@(package-inputs slurm-23.02-latest)))))
|
||||
(inputs (modify-inputs (package-inputs slurm-23.02-latest)
|
||||
(prepend gtk+-2
|
||||
`(,mariadb "dev")
|
||||
ucx-latest-glicid ;not autotested by config
|
||||
podman
|
||||
lua
|
||||
lz4)))))
|
||||
|
||||
(define-public slurm-glicid
|
||||
slurm-22.05-glicid)
|
||||
|
@ -205,5 +202,3 @@
|
|||
(define-public slurm-glicid-test
|
||||
slurm-23.02-glicid)
|
||||
|
||||
slurm-glicid-test
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue