help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: guix pull failling for private channel


From: Moisés Simón Vázquez
Subject: Re: guix pull failling for private channel
Date: Thu, 4 May 2023 17:38:13 +0000

well something weid happened with Emacs...

here is the copy of the email:

Hi,

I have the following error when running `guix pull' with a custom channel
definition:

      Actualizando el canal 'guix' del repositorio Git en 
'https://git.savannah.gnu.org/git/guix.git'...
      Actualizando el canal 'nonguix' del repositorio Git en 
'https://gitlab.com/nonguix/nonguix'...
      Actualizando el canal 'my-packages' del repositorio Git en 
'file:///home/msv/src/personal/guix/my-packages'...
      Actualizando el canal 'udx' del repositorio Git en 
'file:///home/msv/src/udx/guix/'...
      Construyendo a partir de estos canales:
        udx       <file:///home/msv/src/udx/guix/> 783a561
        my-packagesfile:///home/msv/src/personal/guix/my-packages dfd83c0
        nonguix   <https://gitlab.com/nonguix/nonguix> 9d58bb6
        guix      <https://git.savannah.gnu.org/git/guix.git> 5aa1f3a
      [...]
      The following derivations will be built:
        /gnu/store/9x2qqgyk4mpdksxdwphylc7rqx25s28g-profile.drv
        /gnu/store/fvx5k156xymr3v1kj46xq4y9ryywb33w-udx.drv
        /gnu/store/r41y54lcsfmr829lg0pyln6p3qf06bsi-inferior-script.scm.drv
        /gnu/store/hpxrmpyk577x6m6g1l036sxnvpckcac1-my-packages.drv
        /gnu/store/hwnxswnr5cbcm2wyr2m1ffq0f44mivwf-inferior-script.scm.drv
        /gnu/store/fm1m5middi1pxgcs6h3nq65vbrz0cq4x-module-import-compiled.drv
        /gnu/store/1dd0hr86v8lxj7nc8lhdym6rb8b0lsvm-inferior-script.scm.drv
        /gnu/store/brgv9z99xqrr85rymgjbxs3m7sx0i9gy-profile.drv

      construyendo 
/gnu/store/r41y54lcsfmr829lg0pyln6p3qf06bsi-inferior-script.scm.drv...
      construyendo 
/gnu/store/fm1m5middi1pxgcs6h3nq65vbrz0cq4x-module-import-compiled.drv...
      construyendo /gnu/store/fvx5k156xymr3v1kj46xq4y9ryywb33w-udx.drv...
       builder for `/gnu/store/fvx5k156xymr3v1kj46xq4y9ryywb33w-udx.drv' failed 
to produce output path `/gnu/store/i79p66frf0za6w82dcq844npdkpz85q6-udx'
      la construcción de /gnu/store/fvx5k156xymr3v1kj46xq4y9ryywb33w-udx.drv 
falló
      Muestra el registro de construcción en 
'/var/log/guix/drvs/fv/x5k156xymr3v1kj46xq4y9ryywb33w-udx.drv.gz'.
      cannot build derivation 
`/gnu/store/9x2qqgyk4mpdksxdwphylc7rqx25s28g-profile.drv': 1 dependencies 
couldn't be built
      guix pull: error: build of 
`/gnu/store/9x2qqgyk4mpdksxdwphylc7rqx25s28g-profile.drv' failed


- contents of `/var/log/guix/drvs/fv/x5k156xymr3v1kj46xq4y9ryywb33w-udx.drv.gz'
,----
| (repl-version 0 1 1)
| (exception %exception (non-self-quoting 140737182681792 
"#<&store-connection-error file: \"/var/guix/daemon-socket/socket\" errno: 2>"))
`----

of course the socket exists...

I have even made a commit to remove all scm files and done a `guix pull' just to
see if there was something off my code; same result...


*Note also that I have another local channel called 'my-packages' which works*

- my channels.scm
,----
| (list (channel
|       (name 'guix)
|       (url "https://git.savannah.gnu.org/git/guix.git";)
|       (branch "master")
|       (introduction
|         (make-channel-introduction
|           "9edb3f66fd807b096b48283debdcddccfea34bad"
|           (openpgp-fingerprint
|             "BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA"))))
|     (channel
|       (name 'nonguix)
|       (url "https://gitlab.com/nonguix/nonguix";)
|       (branch "master")
|       (introduction
|         (make-channel-introduction
|           "897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|           (openpgp-fingerprint
|             "2A39 3FFF 68F4 EF7A 3D29  12AF 6F51 20A0 22FB B2D5"))))
|     (channel
|       (name 'my-packages)
|       (url "file:///home/msv/src/personal/guix/my-packages")
|       (branch "master"))
|     (channel
|       (name 'udx)
|       (url "file:///home/msv/src/udx/guix/")
|       (branch "master")))
`----

- my .guix-channel
  ,----
  | (channel
  |  (version 0)
  |  (directory "channel"))
  `----

- contents of channel/udx/file-ssytems.scm
  ,----
  | (define-module (udx file-systems)
  |   #:use-module (gnu packages file-systems)
  |   #:use-module (gnu services)
  |   #:use-module (gnu services shepherd)
  |   #:use-module (gnu services admin)
  |   #:export (automount-service-type))
  |
  | ;;;
  | ;;; Autofs Daemon
  | ;;;
  |
  | (define (automount-shepherd-service config)
  |   (list (shepherd-service
  |          (provision '(automount))
  |          (documentation "Run the automount server.")
  |          (requirement '(networking))
  |          (start #~(make-forkexec-constructor
  |                    (list #$(file-append autofs "/sbin/automount") "-f")
  |                    #:log-file "/var/log/automount.log"))
  |          (stop #~(make-kill-destructor)))))
  |
  | (define automount-service-type
  |   (service-type
  |    (name 'automount)
  |    (description "Run the automount server with custom config.")
  |    (extensions
  |     (list (service-extension shepherd-root-service-type
  |                              automount-shepherd-service)
  |           (service-extension rottlog-service-type
  |                              (const
  |                               (list (log-rotation
  |                                      (files (list 
"/var/log/automount.log"))))))
  |           (service-extension etc-service-type
  |                              (lambda (config)
  |                                `(("autofs.conf" ,(plain-file "autofs.conf" 
""))
  |                                  ("auto.master" ,(plain-file "auto.master"
  |                                                              "\
  | /data  /etc/autofs/auto.data --timeout 10\n"))
  |                                  ("autofs/auto.data" ,(plain-file
  |                                                        "auto.data" "\
  | management 
-fstype=cifs,shared,credentials=/etc/smb/udxmgt_credentials,sec=ntlmsspi,vers=3.1.1,iocharset=utf8,uid=0,gid=0,file_mode=0444,dir_mode=0555,ro
 ://192.168.1.2/Share/mgm
  | backups 
-fstype=cifs,shared,credentials=/etc/smb/shiny_credentials,sec=ntlmsspi,vers=3.1.1,iocharset=utf8,uid=1000,gid=1000,file_mode=0660,dir_mode=0770
 ://192.168.1.2/Share/bck
  | ")))))))
  |    (default-value '())))
  `----

Thanks for any light anyone could shed
________________________________
From: Moisés Simón Vázquez <moises.simon@universaldx.com>
Sent: Thursday, May 4, 2023 19:19
To: help-guix@gnu.org <help-guix@gnu.org>
Subject: guix pull failling for private channel

--=-=-=--

reply via email to

[Prev in Thread] Current Thread [Next in Thread]