;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu installer user) #:use-module (guix records) #:export ( user make-user user-name user-group user-home-directory users->configuration)) (define-record-type* user make-user user? (name user-name) (group user-group (default "users")) (home-directory user-home-directory)) (define (users->configuration users) "Return the configuration field for USERS." `((users (cons* ,@(map (lambda (user) `(user-account (name ,(user-name user)) (group ,(user-group user)) (home-directory ,(user-home-directory user)) (supplementary-groups (quote ("wheel" "netdev" "audio" "video"))))) users) %base-user-accounts)))) e='grep'>log msg
AgeCommit message (Expand)Author
2023-07-08gnu: emacs-pasp-mode: Use a source file-name....* gnu/packages/potassco.scm (emacs-pasp-mode)[source]: Use a source file-name. Efraim Flashner
2023-07-01gnu: catch2: Update to 3.3.2....* gnu/packages/check.scm (catch2-3.1): Rename to catch2-3.3. [version, source]: Update to 3.3.2. [outputs]: Remove ‘doc’. [build-system]: Use cmake-build-system. [arguments]: Remove special phases. Add CMake options to #:configure-flags. * gnu/packages/potassco.scm (clingo): Adjust accordingly. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> David Elsing
2023-07-01gnu: clingo: Unbundle dependencies....* gnu/packages/potassco.scm: (clingo)[#:phases]: Patch CMakeLists.txt files to use external dependencies. [native-inputs]: Add mpark-variant, tl-optional, tsl-hopscotch-map, tsl-ordered-map and tsl-sparse-map. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> David Elsing
2023-05-09gnu: Add python-clinguin....* gnu/packages/potassco.scm (python-clinguin): New variable. Liliana Marie Prikler
2023-04-29gnu: libpotassco: Unbundle catch....This patch incidentally fixes a build failure caused by the bundled catch. * gnu/packages/potassco.scm (libpotassco)[source]: Unbundle catch. [native-inputs]: Add catch2-1. Liliana Marie Prikler
2023-04-19gnu: python-typing-extensions: Move to (gnu packages python-build)....* gnu/packages/python-xyz.scm (python-typing-extensions): Move to... * gnu/packages/python-build.scm (python-typing-extensions): ... here. Maxim Cournoyer
2023-04-02gnu: Add python-clingraph....* gnu/packages/potassco.scm (python-clingraph): New variable. Liliana Marie Prikler
2023-04-02gnu: Separate potassco packages into their own module....* gnu/packages/potassco.scm: New file. * gnu/packages/maths.scm (libpotassco, clasp, clingo, python-clingo) (python-telingo): Move to potassco module. Adjust imports accordingly. * gnu/packages/emacs-xyz.scm (emacs-pasp-mode): Move to potassco module. * gnu/local.mk (GNU_SYSTEM_MODULES): Add %D%/packages/potassco.scm. Liliana Marie Prikler