mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
ipl devient glicid.
This commit is contained in:
commit
aa26adc457
1 changed files with 184 additions and 0 deletions
184
gnu/packages/glicid.scm
Normal file
184
gnu/packages/glicid.scm
Normal file
|
@ -0,0 +1,184 @@
|
|||
(define-module (gnu packages ccipl)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix licenses)
|
||||
#:use-module (gnu packages gawk)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages commencement)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module ((guix utils) #:select (target-64bit?))
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages freeipmi)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages mpi)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages parallel)
|
||||
#:use-module (gnu packages storage)
|
||||
#:use-module (gnu packages networking)
|
||||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-science)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages readline)
|
||||
#:use-module (gnu packages tcl)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages web))
|
||||
|
||||
|
||||
|
||||
(define-public ccipl-hello
|
||||
(package
|
||||
(name "ccipl-hello")
|
||||
(version "0.01")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/hello/hello-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '(#:configure-flags '("--enable-silent-rules")))
|
||||
(inputs `(("gawk" ,gawk)))
|
||||
(synopsis "Hello, GNU world: An example GNU package, modified for CCIPL")
|
||||
(description "Guess what GNU Hello prints!")
|
||||
(home-page "https://www.gnu.org/software/hello/")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public ccipl-syslog-ng
|
||||
(package
|
||||
(name "ccipl-syslog-ng")
|
||||
(version "3.25.1")
|
||||
|
||||
(source (origin
|
||||
;; do not use auto-generated tarballs
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/syslog-ng/syslog-ng.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6"))))
|
||||
|
||||
(build-system gnu-build-system)
|
||||
(arguments '(#:configure-flags '("--enable-silent-rules")))
|
||||
(inputs `(("gawk" ,gawk)))
|
||||
(synopsis "Hello, GNU world: An example GNU package, modified for CCIPL")
|
||||
(description "Guess what GNU Hello prints!")
|
||||
(home-page "https://www.gnu.org/software/hello/")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public ccipl-custom-slurm-19.05
|
||||
(package
|
||||
(inherit slurm)
|
||||
(name "ccipl-custom-slurm-19.05")
|
||||
(version "19.05.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
|
||||
(sha256 (base32 "1kj79r8hng5gp98ickgvj3im4gr19nzd3p3p8g6rl75axb8jin7h"))
|
||||
))
|
||||
(inputs `(("gtk+-2" ,gtk+-2)
|
||||
,@(package-inputs slurm)
|
||||
))
|
||||
))
|
||||
|
||||
(define-public ccipl-custom-slurm-20.02
|
||||
(package
|
||||
(inherit ccipl-custom-slurm-19.05)
|
||||
(name "ccipl-custom-slurm-20.02")
|
||||
(version "20.02.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
|
||||
(sha256 (base32 "198in1hq0wh8qi8cfz9dqfc1p7f1qfhxc8ang0228ab8c4y83sby"))
|
||||
))
|
||||
))
|
||||
|
||||
(define-public ccipl-custom-slurm ccipl-custom-slurm-19.05)
|
||||
|
||||
(define-public ccipl-ceph-14
|
||||
(package
|
||||
(inherit ceph)
|
||||
(name "ccipl-ceph-14")
|
||||
(version "14.2.9")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://download.ceph.com/tarballs/ceph_" version ".orig.tar.gz"))
|
||||
(sha256 (base32 "0zkh1a23v8g1fa5flqa2d53lv08ancab3li57gybpqpnja90k7il"))
|
||||
))
|
||||
))
|
||||
|
||||
(define-public ccipl-librdkafka-09
|
||||
(package
|
||||
(inherit librdkafka)
|
||||
(name "ccipl-librdkafka-09")
|
||||
(version "0.9.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/edenhill/librdkafka/archive/v" version ".tar.gz"))
|
||||
(sha256 (base32 "0938yn1msaq8xcj5z7b3jcdy6rslh9kxmvz01r8rdcgbarlvchy2"))
|
||||
))
|
||||
))
|
||||
|
||||
|
||||
(define-public ccipl-ceph-15
|
||||
(package
|
||||
(inherit ceph)
|
||||
(name "ccipl-ceph-15")
|
||||
(version "15.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://download.ceph.com/tarballs/ceph_" version ".orig.tar.gz"))
|
||||
(sha256 (base32 "0ql288dcpddi4kp3f6bcvipgi0hc8rqbsr38a18a4ia5nasfvib8"))
|
||||
))
|
||||
(inputs `(("ccipl-librdkafka-09" ,ccipl-librdkafka-09)
|
||||
,@(package-inputs ceph)
|
||||
))
|
||||
|
||||
))
|
||||
|
||||
|
||||
(define-public ccipl-x2go
|
||||
(package
|
||||
(name "ccipl-x2go")
|
||||
(version "4.1.0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://code.x2go.org/releases/source/x2goserver/x2goserver-" version ".tar.gz"))
|
||||
(sha256 (base32 "1l6wd708kbipib4ldprfiihqmj4895nifg0bkws4x97majislxk7"))
|
||||
))
|
||||
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)))
|
||||
|
||||
(inputs
|
||||
`(("perl" , perl)))
|
||||
|
||||
(build-system gnu-build-system)
|
||||
(synopsis "X2go")
|
||||
(description "X2go")
|
||||
(license "not checked")
|
||||
(home-page "https://wiki.x2go.org")
|
||||
)
|
||||
|
||||
)
|
||||
|
||||
|
||||
;;; ccipl.scm ends here
|
Loading…
Add table
Reference in a new issue