all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* why does guix compile rust for root?
@ 2019-03-28  4:43 znavko
  0 siblings, 0 replies; 5+ messages in thread
From: znavko @ 2019-03-28  4:43 UTC (permalink / raw)
  To: Help Guix


[-- Attachment #1.1: Type: text/plain, Size: 335 bytes --]

Hello! I ran `guix system reconfigure /etc/config.scm` and now rust is compiling. Rust is compiling too long.

I've produced `guix graph --type=reverse-package rust | dot -Tsvg > r.svg` to see why does guix do this, but there is no answer.

My config and rust reverse dependecies tree are in attach.
A tree has only one node - rust. 


[-- Attachment #1.2: Type: text/html, Size: 778 bytes --]

[-- Attachment #2: r.svg --]
[-- Type: image/svg+xml, Size: 914 bytes --]

[-- Attachment #3: config.scm --]
[-- Type: text/x-scheme, Size: 4142 bytes --]

;;this is znavko's cute config

(use-modules (gnu) (gnu system nss)
             (gnu system locale) ;;for locale-definition
             (gnu services desktop)
             ;;(gnu services dns) ;;for dnsmasq
             (srfi srfi-1) ;;for remove function
             (gnu services networking) ;;for remove ntp
             (gnu services avahi) ;;for remove avahi
             (gnu services xorg)
             ;;(gnu services databases);;for postgres
             (gnu packages admin) ;;for wpa_supplicant
)
(use-service-modules desktop)
(use-package-modules certs gnome)

;;(define %redundant-linux-modules '("pcspkr" "snd_pcsp"))

(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (target "/dev/sda")))
  (file-systems (cons (file-system
                        (device "/dev/sda1") (mount-point "/") (type "ext4"))
                      %base-file-systems))
  (swap-devices '("/dev/sda2"))

  (users (cons* (user-account (name "bob") (group "users")
                (supplementary-groups '("wheel" "netdev" "audio" "video"))
                (home-directory "/home/bob"))
                (user-account (name "mom") (group "users")
                (supplementary-groups '("wheel" "netdev" "audio" "video"))
                (home-directory "/home/mom"))
                (user-account (name "alice") (group "users")
                (supplementary-groups '("wheel" "netdev" "audio" "video"))
                (home-directory "/home/alice"))
               %base-user-accounts))

  ;; This is where we specify system-wide packages.
  (packages (cons* nss-certs         ;for HTTPS access
                   gvfs              ;for user mounts
		   wpa-supplicant
		   isc-dhcp
                   %base-packages))

  (services (cons*  
                    ;;(service postgresql-service-type)
                    (service xfce-desktop-service-type)
                    (modify-services      
                      ;;(remove (lambda (service)
                      ;;  (eq? (service-kind service)
                      ;;    wpa-supplicant-service-type))
                      ;;  (remove (lambda (service)
                      ;;    (eq? (service-kind service)
                      ;;      static-networking-service-type))
                          (remove (lambda (service)
                            (eq? (service-kind service)
                              ntp-service-type))
                            (remove (lambda (service)
                              (eq? (service-kind service)
                                avahi-service-type))
                              (modify-services %desktop-services

                                (slim-service-type config =>
                                              (slim-configuration
                                               (xorg-configuration
                                                 (xorg-configuration
                                                  (extra-config
                                                  
"Section \"InputClass\"
        Identifier \"touchpad\"
        Driver \"libinput\"
        MatchIsTouchpad \"on\"
        Option \"Tapping\" \"on\"
EndSection"
                                 )))))
  )  ;end of modify-services 2nd


                            )  ;end of remove avahi
                          )  ;end of remove2 ntp
                        ;;)  ;end of remove3 networking
                      ;)  ;end of remove4 wpa-supplicant
                      (elogind-service-type
                        c => (elogind-configuration (handle-lid-switch 'ignore)))
                    );;end of modify-services 1st desktop-services
  ));;end of services

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss)


 (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp"))
 ;(kernel-arguments
 ;    (list (string-append "modprobe.blacklist="
 ;                         (apply comma-separated
 ;   %redundant-linux-modules))))

);;end of operating-system

  


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: why does guix compile rust for root?
       [not found] <Lb1b4HZ--3-1@tutanota.com-Lb1b9G2--c-1>
@ 2019-03-28  4:45 ` znavko
       [not found] ` <Lb1bajS--3-1@tutanota.com-Lb1bbDt--7-1>
  1 sibling, 0 replies; 5+ messages in thread
From: znavko @ 2019-03-28  4:45 UTC (permalink / raw)
  To: Znavko; +Cc: Help Guix

[-- Attachment #1: Type: text/plain, Size: 512 bytes --]

Also I did not install rust by myself:

# guix package --list-installed | grep rust
#

Mar 28, 2019, 4:43 AM by znavko@tutanota.com <mailto:znavko@tutanota.com>:

> Hello! I ran `guix system reconfigure /etc/config.scm` and now rust is compiling. Rust is compiling too long.
>
> I've produced `guix graph --type=reverse-package rust | dot -Tsvg > r.svg` to see why does guix do this, but there is no answer.
>
> My config and rust reverse dependecies tree are in attach.
> A tree has only one node - rust. 
>
>


[-- Attachment #2: Type: text/html, Size: 1191 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: why does guix compile rust for root?
       [not found] ` <Lb1bajS--3-1@tutanota.com-Lb1bbDt--7-1>
@ 2019-03-28  4:50   ` znavko
  2019-03-28 19:32     ` Joshua Branson
  0 siblings, 1 reply; 5+ messages in thread
From: znavko @ 2019-03-28  4:50 UTC (permalink / raw)
  To: Znavko; +Cc: Help Guix

[-- Attachment #1: Type: text/plain, Size: 665 bytes --]

oops, sorry, that was usual user command run. so rust is need for icecat.



Mar 28, 2019, 4:45 AM by znavko@tutanota.com:

> Also I did not install rust by myself:
>
> # guix package --list-installed | grep rust
> #
>
>
> Mar 28, 2019, 4:43 AM by > znavko@tutanota.com <mailto:znavko@tutanota.com>> :
>
>> Hello! I ran `guix system reconfigure /etc/config.scm` and now rust is compiling. Rust is compiling too long.
>>
>> I've produced `guix graph --type=reverse-package rust | dot -Tsvg > r.svg` to see why does guix do this, but there is no answer.
>>
>> My config and rust reverse dependecies tree are in attach.
>> A tree has only one node - rust. 
>>
>>
>
>


[-- Attachment #2: Type: text/html, Size: 1835 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: why does guix compile rust for root?
  2019-03-28  4:50   ` znavko
@ 2019-03-28 19:32     ` Joshua Branson
  2019-03-29  2:05       ` Ivan Petkov
  0 siblings, 1 reply; 5+ messages in thread
From: Joshua Branson @ 2019-03-28 19:32 UTC (permalink / raw)
  To: help-guix

<znavko@tutanota.com> writes:

> oops, sorry, that was usual user command run. so rust is need for icecat.

Yup.  Making rust reproducible is tough at the moment.  I think we have
to compile several rust versions at the moment...

>
> Mar 28, 2019, 4:45 AM by znavko@tutanota.com:
>
>  Also I did not install rust by myself:
>
>  # guix package --list-installed | grep rust
>  #
>
>  Mar 28, 2019, 4:43 AM by znavko@tutanota.com:
>
>  Hello! I ran `guix system reconfigure /etc/config.scm` and now rust is
>  compiling. Rust is compiling too long.
>
>  I've produced `guix graph --type=reverse-package rust | dot -Tsvg > r.svg`
>  to see why does guix do this, but there is no answer.
>
>  My config and rust reverse dependecies tree are in attach.
>  A tree has only one node - rust. 
>

-- 
Joshua Branson
Sent from Emacs and Gnus

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: why does guix compile rust for root?
  2019-03-28 19:32     ` Joshua Branson
@ 2019-03-29  2:05       ` Ivan Petkov
  0 siblings, 0 replies; 5+ messages in thread
From: Ivan Petkov @ 2019-03-29  2:05 UTC (permalink / raw)
  To: Joshua Branson; +Cc: help-guix

I think something changed recently which has cause a rebuild in rust (libgit2 maybe?).
Hydra is building rust 1.31 as we speak, so the substitutes should be available soon

—Ivan

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-29  2:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <Lb1b4HZ--3-1@tutanota.com-Lb1b9G2--c-1>
2019-03-28  4:45 ` why does guix compile rust for root? znavko
     [not found] ` <Lb1bajS--3-1@tutanota.com-Lb1bbDt--7-1>
2019-03-28  4:50   ` znavko
2019-03-28 19:32     ` Joshua Branson
2019-03-29  2:05       ` Ivan Petkov
2019-03-28  4:43 znavko

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.