GNU bug report logs - #63546
nix-channel error: opening pseudoterminal master: No such device

Previous Next

Package: guix;

Reported by: Nathan Dehnel <ncdehnel <at> gmail.com>

Date: Wed, 17 May 2023 04:45:02 UTC

Severity: normal

Full log


View this message in rfc822 format

From: worldofgeese <worldofgeese <at> proton.me>
To: "63546 <at> debbugs.gnu.org" <63546 <at> debbugs.gnu.org>
Subject: bug#63546: (No Subject)
Date: Fri, 23 Jun 2023 07:55:19 +0000
I'm still receiving the same error. I tested a variant of Zhu's patch by defining my own custom Nix package that sticks very closely to Zhu's, just with manpages and docs generation disabled. I can confirm Nix is running latest: nix (Nix) 2.16.0.

This is the first time I've done any kind of Guix hacking so it's a bit rough. Here's my custom Nix package.

(define-public my-nix
  (package
    (inherit nix)
    (name "nix")
    (version "2.16.0")
    (inputs (modify-inputs (package-inputs nix)
              (append rapidcheck nlohmann-json)))
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/NixOS/nix")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
         (base32 "0jizpci4zspqpqqy3n780m4wh8dzhfywaiz953xv70c7in810dra"))))
    (arguments
     `(#:configure-flags '("--disable-doc-gen")
       #:phases
       (modify-phases %standard-phases
         (replace 'check
            (lambda args
              ;; Some tests expect environment variable NIX_STORE to be
              ;; "/nix/store"
              (let ((original-NIX_STORE (getenv "NIX_STORE")))
                (dynamic-wind
                  (lambda ()
                    (setenv "NIX_STORE" "/nix/store"))
                  (lambda ()
                    (apply (assoc-ref %standard-phases 'check) args))
                  (lambda ()
                    (setenv "NIX_STORE" original-NIX_STORE)))))))))))

Attempting to run devbox shell returns 

Error: Command: /run/current-system/profile/bin/nix print-dev-env /home/worldofgeese/Downloads/projects/little_bits_of_buddha/.devbox/gen/flake/flake.nix --extra-experimental-features ca-derivations --option experimental-features nix-command flakes --json: exit status 1

[DEBUG] 2023/06/23 09:38:50 go.jetpack.io/devbox/internal/boxcli/midcobra/debug.go:72: Command stderr: path '/home/worldofgeese/Downloads/projects/little_bits_of_buddha/.devbox/gen/flake/flake.nix' does not contain a 'flake.nix', searching up
warning: Git tree '/home/worldofgeese/Downloads/projects/little_bits_of_buddha/.devbox/gen/flake' is dirty
error: opening pseudoterminal master: No such device. 

Devbox is a Nix package available from the Nixpkgs repositories intended for local development using Nix flakes.





This bug report was last modified 2 years and 40 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.