From 91d59549a7c9bfe3c458b68f9cd072c5e7853c0e Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Tue, 1 Dec 2020 12:36:11 +0100 Subject: gnu: Add trivial-shell. * gnu/packages/lisp-xyz.scm (cl-trivial-shell, ecl-trivial-shell, sbcl-trivial-shell): New variables. --- gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 511ef8b395..3b85054d0e 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -12011,3 +12011,33 @@ not so easy to copy (ssyntax, argument destructuring, etc.).") (define-public ecl-clamp (sbcl-package->ecl-package sbcl-clamp)) + +(define-public sbcl-trivial-shell + (let ((commit "e02ec191b34b52deca5d1c4ee99d4fa13b8772e0")) + (package + (name "sbcl-trivial-shell") + (version (git-version "0.2.0" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gwkkwg/trivial-shell") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08mpkl5ij5sjfsyn8pq2kvsvpvyvr7ha1r8g1224fa667b8k2q85")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("lift" ,sbcl-lift))) + (home-page "http://common-lisp.net/project/trivial-shell/") + (synopsis "Common Lisp access to the shell") + (description + "A simple Common-Lisp interface to the underlying operating system. +It's independent of the implementation and operating system.") + (license license:expat)))) + +(define-public cl-trivial-shell + (sbcl-package->cl-source-package sbcl-trivial-shell)) + +(define-public ecl-trivial-shell + (sbcl-package->ecl-package sbcl-trivial-shell)) -- cgit v1.2.3 'grep'>log msg
path: root/gnu/system/setuid.scm
AgeCommit message (Expand)Author
2024-09-08privilege: Add file-like->setuid-program helper....* gnu/system/privilege.scm (file-like->setuid-program): New public procedure. * gnu/system/setuid.scm: Re-export it for compatibility. (file-like->setuid-program): Remove this old version. * gnu/services/docker.scm (singularity-setuid-programs): Use it (again). * gnu/services/desktop.scm (enlightenment-privileged-programs): Likewise. Change-Id: I8e41144438677a15cdadb3063651dbc780715497 Tobias Geerinckx-Rice
2024-08-11system: (gnu system setuid) wraps (gnu system privilege)....* gnu/system/setuid.scm (setuid-program): Rewrite as syntax to create a <privileged-program> record that is setuid by default. (setuid-program?, setuid-program-program, setuid-program-setuid?) (setuid-program-setgid?, setuid-program-user, setuid-program-group): Alias their privileged-program equivalent. Tobias Geerinckx-Rice
2021-07-29system: Add (gnu system setuid)....I flubbed and somehow when including the patch series, this got dropped. Oops... should fix things again. * gnu/system/setuid.scm: New file. Christopher Lemmer Webber