unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Morgan.J.Smith@outlook.com
To: 41578@debbugs.gnu.org
Cc: Morgan Smith <Morgan.J.Smith@outlook.com>
Subject: [bug#41578] [PATCH] gnu: Add opendoas.
Date: Thu, 28 May 2020 11:35:07 -0400	[thread overview]
Message-ID: <DM5PR1001MB210525690A0A78B56DD33822C58E0@DM5PR1001MB2105.namprd10.prod.outlook.com> (raw)

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/admin.scm (opendoas): New variable.
---
 gnu/packages/admin.scm | 51 ++++++++++++++++++++++++++++++++++++++++++
 gnu/system.scm         |  1 +
 2 files changed, 52 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index b0a43d9644..594ec62c1d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1389,6 +1389,57 @@ commands and their arguments.")
     ;; See <http://www.sudo.ws/sudo/license.html>.
     (license license:x11)))
 
+(define-public opendoas
+  (package
+    (name "opendoas")
+    (version "6.6.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Duncaen/OpenDoas.git")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "07kkc5729p654jrgfsc8zyhiwicgmq38yacmwfvay2b3gmy728zn"))))
+    (build-system gnu-build-system)
+    (arguments (let* ((target (%current-target-system))
+                      (compiler (if target
+                                    (string-append target "-gcc")
+                                    "gcc")))
+                 `(#:phases
+                   (modify-phases %standard-phases
+                     ;; We replace the configure phase in order to remove all the
+                     ;; default flags. The configure script doesn't accept most
+                     ;; of the default flags
+                     (replace 'configure
+                       (lambda* (#:key configure-flags #:allow-other-keys)
+                         ;; The configure script can only be told which
+                         ;; compiler to use through environment variables
+                         (setenv "CC" ,compiler)
+                         (apply invoke "./configure" configure-flags)))
+                     (add-before 'install 'fix-makefile
+                       (lambda* (#:key outputs #:allow-other-keys)
+                         ;; We can't chown to root as the chroot doesn't have
+                         ;; this user. Also the store is owned by root so this
+                         ;; isn't necessary.
+                         (substitute* "bsd.prog.mk"
+                           (("^\tchown.*$") "")))))
+                   #:configure-flags (list (string-append "--prefix=" %output)
+                                           (string-append "--target=" (or ,target ""))
+                                           "--with-timestamp")
+                   ;; Compiler choice is not carried over from the configure script
+                   #:make-flags (list (string-append "CC=" ,compiler))
+                   ;; There are no tests provided
+                   #:tests? #f)))
+    (native-inputs `(("bison" ,bison)))
+    (home-page "https://github.com/Duncaen/OpenDoas")
+    (synopsis "Portable version of OpenBSD's doas command")
+    (description "Doas is a minimal replacement for the venerable sudo.  It was
+initially written by Ted Unangst of the OpenBSD project to provide 95% of the
+features of sudo with a fraction of the codebase.")
+    (license license:isc)))
+
 (define-public wpa-supplicant-minimal
   (package
     (name "wpa-supplicant-minimal")
diff --git a/gnu/system.scm b/gnu/system.scm
index d929187695..d5fd0979a1 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -896,6 +896,7 @@ use 'plain-file' instead~%")
           (file-append inetutils "/bin/ping6")
           (file-append sudo "/bin/sudo")
           (file-append sudo "/bin/sudoedit")
+          (file-append opendoas "/bin/doas")
           (file-append fuse "/bin/fusermount")
 
           ;; To allow mounts with the "user" option, "mount" and "umount" must
-- 
2.26.2





             reply	other threads:[~2020-05-28 15:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-28 15:35 Morgan.J.Smith [this message]
2020-05-28 17:57 ` [bug#41578] [PATCH] gnu: Add opendoas Tobias Geerinckx-Rice via Guix-patches via
2020-05-28 18:51   ` Morgan Smith
2020-05-30 23:57     ` bug#41578: " Tobias Geerinckx-Rice via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DM5PR1001MB210525690A0A78B56DD33822C58E0@DM5PR1001MB2105.namprd10.prod.outlook.com \
    --to=morgan.j.smith@outlook.com \
    --cc=41578@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).