From 3507d1162e445f9d964b24204437479061748510 Mon Sep 17 00:00:00 2001 From: "dupont-y@univ-nantes.fr" Date: Tue, 20 Jun 2023 10:16:40 +0200 Subject: [PATCH] upstreamed packages. --- glicid/packages/ssh.scm | 91 +---------------------------------------- 1 file changed, 2 insertions(+), 89 deletions(-) diff --git a/glicid/packages/ssh.scm b/glicid/packages/ssh.scm index 7f7a43d..f991fe4 100644 --- a/glicid/packages/ssh.scm +++ b/glicid/packages/ssh.scm @@ -12,93 +12,6 @@ #:use-module (gnu packages compression) #:use-module (gnu packages pkg-config) #:use-module (gnu packages linux) - #:use-module (gnu packages security-token)) -(define-public libcbor-0.8.0 - (package - (name "libcbor") - (version "0.8.0") - (source (origin - (method url-fetch) - (uri (string-append - "http://github.com/PJK/libcbor/archive/refs/tags/v" - version ".tar.gz")) - (sha256 - (base32 - "12vw46ahhsc3ydnivkv5lvk1cn4sjjmcr639cjcl99d4dqb9g031")))) - (build-system cmake-build-system) - (arguments - `(#:configure-flags (list "-DCMAKE_CXX_FLAGS=-fPIE" - "-DCMAKE_C_FLAGS=-fPIE"))) - (synopsis "libfido2") - (description "Todo") - (home-page "toto") - (license license:gpl2+))) + #:use-module (gnu packages security-token) -(define-public libcbor-0.9.0 - (package - (inherit libcbor-0.8.0) - (version "0.9.0") - (source (origin - (method url-fetch) - (uri (string-append - "http://github.com/PJK/libcbor/archive/refs/tags/v" - version ".tar.gz")) - (sha256 - (base32 - "1l8m7h84zwlx088gkz6gvg2fq11g0p3q6lblwba8c01y6gwy90fs")))))) - -(define-public libcbor-latest - libcbor-0.9.0) - -(define-public openssh-with-fido2 - ;this is has to be worked again - (package - (inherit openssh) - (name "openssh-with-fido2") - (arguments - `(#:test-target "tests" - #:make-flags '("REGRESSTMP=\"$${BUILDDIR}/regress\"") - #:configure-flags `("--sysconfdir=/etc/ssh" - "--with-default-path=/run/current-system/profile/bin" - ,(string-append "--with-kerberos5=" - (assoc-ref %build-inputs "mit-krb5") - "/bin") - "--with-libedit" - "--with-security-key-builtin" - ,,@(if (hurd-target?) - '() - '("--with-pam")) - ,,@(if (%current-target-system) - '("--disable-strip") - '())) - #:phases (modify-phases %standard-phases - (add-after 'configure 'reset-/var/empty - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (substitute* "Makefile" - (("PRIVSEP_PATH=/var/empty") - (string-append "PRIVSEP_PATH=" out "/var/empty"))) - #t))) - (add-before 'check 'patch-tests - (lambda _ - (substitute* "regress/test-exec.sh" - (("/bin/sh") - (which "sh"))) - (substitute* (list "Makefile" "regress/Makefile") - (("^(tests:.*) t-exec(.*)" all pre post) - (string-append pre post))) #t)) - (replace 'install - (lambda* (#:key outputs - (make-flags '()) #:allow-other-keys) - (apply invoke "make" "install-nosysconf" make-flags) - (install-file "contrib/ssh-copy-id" - (string-append (assoc-ref outputs "out") - "/bin/")) - (chmod (string-append (assoc-ref outputs "out") - "/bin/ssh-copy-id") #o555) - (install-file "contrib/ssh-copy-id.1" - (string-append (assoc-ref outputs "out") - "/share/man/man1/")) #t))))) - (inputs `(("libfido2" ,libfido2) - ("libcbor" ,libcbor) - ,@(package-inputs openssh))))) +;; openssh-with-fido2 was here but needs rework \ No newline at end of file