bug#47537: acknowledged by developer (control message for bug #47537)

2021-04-14 Thread fsdfsdfsd3 via Bug reports for GNU Guix
Hello, I ended up testing my config file with nfs4 and that part did work fine. I had earlier errors unrelated to this that threw me off thinking that would not work. To clarify then, the issue here only seems to be with the mount function in the (guix build syscalls) module. This results in a

bug#47706: nfs mount in file-system works only if "nfs4" type is used for "mount" syscall

2021-04-11 Thread fsdfsdfsd3 via Bug reports for GNU Guix
Hello, I ran into an issue with trying to mount an nfs file-system in an operating-system config.. I managed to trace it back to being an issue with the mount syscall. The following did not work: (mount "192.168.1.10:/nas-server" "/mnt/nas-client" "nfs" 0 "addr=192.168. 1.10") and would result

bug#47537: specification->package does not seem to support outputs

2021-04-01 Thread fsdfsdfsd3 via Bug reports for GNU Guix
Hello, An example of this behavior in a guile repl is: (use-modules (gnu packages)) (specification->package "qemu") ; works (specification->package "qemu:doc") ; errors and closes the repl (specification->package+output "qemu:doc") ; works as expected Thank you!