;;; 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) #:use-module (srfi srfi-1) #:export ( user make-user user-name user-real-name user-group user-home-directory user-password users->configuration)) (define-record-type* user make-user user? (name user-name) (real-name user-real-name (default "")) (group user-group (default "users")) (password user-password) (home-directory user-home-directory)) (define (users->configuration users) "Return the configuration field for USERS." (define (user->sexp user) `(user-account (name ,(user-name user)) (comment ,(user-real-name user)) (group ,(user-group user)) (home-directory ,(user-home-directory user)) (supplementary-groups '("wheel" "netdev" "audio" "video")))) `((users (cons* ,@(filter-map (lambda (user) ;; Do not emit a 'user-account' form for "root". (and (not (string=? (user-name user) "root")) (user->sexp user))) users) %base-user-accounts)))) 026ef7143d36036570e7e027ab85b64'>root/gnu/packages/graphviz.scm
AgeCommit message (Expand)Author
2018-07-08gnu: python-graphviz: Update to 0.8.4....Tobias Geerinckx-Rice
2018-05-17Merge branch 'master' into core-updatesMark H Weaver
2018-05-17gnu: python-graphviz: Update to 0.8.3....Tobias Geerinckx-Rice
2018-04-10Merge branch 'master' into core-updatesMark H Weaver
2018-04-04gnu: Add dot2tex....Mathieu Lirzin
2018-03-29Merge branch 'master' into core-updatesMarius Bakke
2018-03-25gnu: python-graphviz: Update to 0.8.2....Tobias Geerinckx-Rice
2018-02-20gnu: gts: Update phase style....Tobias Geerinckx-Rice
2017-11-07gnu: Add python-pydot....Gábor Boskovits
2017-10-23gnu: python-graphviz: Update to 0.8.1....Tobias Geerinckx-Rice
2017-10-10gnu: Add python-graphviz....Ricardo Wurmus
2017-10-05Merge branch 'master' into stagingMarius Bakke
2017-10-03Update e-mail for Theodoros Foradis....Theodoros Foradis
2017-07-14gnu: graphviz: Update to 2.40.1....Arun Isaac
2017-07-14gnu: graphviz: Use modify-phases....Arun Isaac
2017-01-01gnu: Add xdot....Theodoros Foradis