mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-01 14:45:39 +02:00
updating openldap
This commit is contained in:
parent
29b616e131
commit
0a508dbe43
2 changed files with 27 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
|||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (glicid packages perl)
|
||||
)
|
||||
|
||||
(define-public openldap
|
||||
|
@ -77,6 +78,7 @@
|
|||
"--with-tls=openssl"
|
||||
)
|
||||
#:make-flags '("STRIP=")
|
||||
#:parallel-build? #f
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-before 'build 'make-depend
|
||||
(lambda* (#:key input #:allow-other-keys)
|
||||
|
|
25
glicid/packages/perl.scm
Normal file
25
glicid/packages/perl.scm
Normal file
|
@ -0,0 +1,25 @@
|
|||
(define-module (glicid packages openldap)
|
||||
#:use-module (guix build-system perl)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
)
|
||||
|
||||
(define-public perl-extutils-embed
|
||||
(package
|
||||
(name "perl-extutils-embed")
|
||||
(version "1.14")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/D/DO/DOUGM/ExtUtils-Embed-" version ".tar.gz"))
|
||||
(sha256 (base32 "1w55q0wz6i4k9p500mc4wmr8jndnczb6qqrd2m1mrnx13v2mbr7h"))
|
||||
)
|
||||
)
|
||||
(build-system perl-build-system)
|
||||
(home-page "https://metacpan.org/release/ExtUtils-Embed")
|
||||
(synopsis "Utilities for embedding Perl in C/C++ applications")
|
||||
(description "Utilities for embedding Perl in C/C++ applications")
|
||||
(license #f)
|
||||
)
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue