about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/nix/info/info.sh
blob: 6708a541f3d94ff979077cf58bd9cd46faededc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/bin/bash

PATH="@path@:$PATH"
IS_DARWIN="@is_darwin@"

set -eu
set -o pipefail

DEBUG=0
MARKDOWN=0
HOST_OS=0
SANDBOX=0
while true; do
    case "${1:-}" in
        "")
            break
            ;;
        -d | --debug)
            set -x
            DEBUG=1
            shift
            ;;
        -m | --markdown)
            MARKDOWN=1
            HOST_OS=1
            SANDBOX=1
            shift
            ;;
        --host-os)
            HOST_OS=1
            shift
            ;;
        --sandbox)
            SANDBOX=1
            shift
            ;;

        * )
            cat <<EOF
nix-info - get high level info to help with debugging

Options:

 -m, --markdown   formatting for a GitHub issue
                  implies: --host-os, --sandbox

     --sandbox    include sandbox configuration
     --host-os    include host OS details

 -h, --help       show this message
 -d, --debug      debug mode

EOF
            exit 1
            ;;

    esac
done

debuglog() {
    if [ $DEBUG -eq 1 ]; then
        cat >&2
    else
        cat > /dev/null
    fi
}

nixev() {
    nix-instantiate --eval --strict -E "$1"
}

desc_system() {
    nixev '(import <nixpkgs> {}).stdenv.hostPlatform.system'
}

desc_host_os() {
    printf "%s" "$(uname -sr)"

    if [ "$IS_DARWIN" = "yes" ]; then
        printf ", macOS %s" "$(sw_vers -productVersion)"
    fi

    if [ -f /etc/os-release ]; then
        (
            # shellcheck disable=SC1091
            . /etc/os-release
            printf ", %s, %s" "${NAME:-$(uname -v)}" "${VERSION:-noversion}"
        )
    fi
}

desc_multi_user() {
    if nix-build --no-out-link  @multiusertest@ 2>&1 | debuglog; then
        printf "yes"
    else
        printf "no"
    fi
}

desc_nixpkgs_path() {
    nixev '<nixpkgs>'
}

channel_facts() {
    find /nix/var/nix/profiles/per-user \
         -mindepth 2 \
         -maxdepth 2 \
         -name channels \
         -print0 \
    |\
    while  IFS= read -r -d '' userchannelset; do
        manifest="$userchannelset/manifest.nix"

        if [ -e "$manifest" ]; then
            userchannels=$(nixev \
                           "builtins.concatStringsSep \", \"
                             (map (ch: ch.name)
                               (import \"$manifest\"))")

            fact "channels($(echo "$manifest" | cut -d/ -f7))" \
                 "$userchannels"
        fi
    done
}

desc_sandbox() {
    if nix-build --no-out-link @sandboxtest@ 2>&1 | debuglog; then
        printf "no"
    elif nix-build --no-out-link @relaxedsandboxtest@ 2>&1 | debuglog; then
        printf "relaxed"
    else
        printf "yes"
    fi
}

fact() {
    name="${1:-0}"
    value="${2:-0}"
    last="${3:-1}"
    if [ $MARKDOWN -eq 0 ]; then
        printf "%s: %s" "$name" "$value"
        if [ "$last" -eq 1 ]; then
            printf ", "
        fi
    else
        printf " - %s: \`%s\`\\n" "$name" "$value"
    fi

    if [ "$last" -eq 0 ]; then
        echo ""
    fi
}

last_fact() {
    fact "$1" "$2" 0
}

fact "system" "$(desc_system)"
if [ $HOST_OS -eq 1 ]; then
    fact "host os" "$(desc_host_os)"
fi
fact "multi-user?" "$(desc_multi_user)"
if [ $SANDBOX -eq 1 ]; then
    fact "sandbox" "$(desc_sandbox)"
fi

fact "version" "$(nix-env --version)"
channel_facts
last_fact "nixpkgs" "$(desc_nixpkgs_path)"