aboutsummaryrefslogtreecommitdiff
path: root/tests/cran.scm
diff options
context:
space:
mode:
authorPkill -9 <pkill9@runbox.com>2019-01-16 15:14:45 +0000
committerLudovic Courtès <ludo@gnu.org>2019-01-20 19:21:43 +0100
commite5ad2cdf172eecc7edef37a500593b1941af013c (patch)
tree331fcf183b1edfd3d15e66a4d734b519d4b6eb3a /tests/cran.scm
parentb06966b4e1fc2fed237f0eb7bf27da9c5fcff41a (diff)
downloadguix-e5ad2cdf172eecc7edef37a500593b1941af013c.tar.gz
guix-e5ad2cdf172eecc7edef37a500593b1941af013c.zip
gnu: Add pencil2d.
* gnu/packages/animation.scm (pencil2d): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'tests/cran.scm')
0 files changed, 0 insertions, 0 deletions
ment '(networking)) (start #~(make-forkexec-constructor (list #$wesnothd "-p" #$(number->string port)) #:user "wesnothd" #:group "wesnothd")) (stop #~(make-kill-destructor))))))) (define wesnothd-activation (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils)) (let* ((user (getpw "wesnothd")) (directory "/var/run/wesnothd")) ;; wesnothd creates a Unix-domain socket in DIRECTORY. (mkdir-p directory) (chown directory (passwd:uid user) (passwd:gid user)))))) (define wesnothd-service-type (service-type (name 'wesnothd) (description "Run The Battle for Wesnoth server @command{wesnothd}.") (extensions (list (service-extension account-service-type (const %wesnothd-accounts)) (service-extension activation-service-type (const wesnothd-activation)) (service-extension shepherd-root-service-type (compose list wesnothd-shepherd-service)))) (default-value (wesnothd-configuration))))