about summary refs log tree commit diff
path: root/README.md
blob: acdcd367fc9e0a6a1f534153a3fef27656da0c29 (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
nix-repl
========

`nix-repl` is a simple read–eval–print loop (REPL) for the Nix package
manager.

Installation
------------

Assuming you have Nix installed, just do

    $ git clone https://github.com/edolstra/nix-repl.git
    $ cd nix-repl
    $ nix-env -f . -i nix-repl

Example
-------

Here is a typical `nix-repl` session:

    $ nix-repl
    Welcome to Nix version 1.6pre3215_2c1ecf8. Type :? for help.

    nix-repl> 3 * 4
    12

    nix-repl> :l <nixpkgs>
    Added 3337 variables.

    nix-repl> lib.range 1 5
    [ 1 2 3 4 5 ]

    nix-repl> :a lib
    Added 299 variables.

    nix-repl> range 1 5
    [ 1 2 3 4 5 ]

    nix-repl> xs = range 1 5

    nix-repl> map (x: x * x) xs
    [ 1 4 9 16 25 ]

    nix-repl> :l <nixos>
    Added 7 variables.

    nix-repl> config.services.dhcpd
    { configFile = null; enable = false; extraConfig = ""; interfaces = [ ... ]; machines = [ ... ]; }

    nix-repl> :p config.services.dhcpd
    { configFile = null; enable = false; extraConfig = ""; interfaces = [ "eth0" ]; machines = [ ]; }

    nix-repl> config.fileSystems
    { "/" = { ... }; "/boot" = { ... }; }

    nix-repl> mapAttrsToList (n: v: v.device) config.fileSystems
    [ "/dev/disk/by-label/nixos" "/dev/disk/by-label/boot" ]

    nix-repl> :b libjson
    these derivations will be built:
      /nix/store/h910xqb36pysxcxkayb1zkr1zcvvk1zy-libjson_7.6.1.zip.drv
      /nix/store/iv0rdx08di0fg704zyxklkvdz6i96lm8-libjson-7.6.1.drv
    ...
    this derivation produced the following outputs:
      out -> /nix/store/ys6bvgfia81rjwqxjlgkwnx6jhsml8h9-libjson-7.6.1

    nix-repl> :t makeFontsConf
    a function

    nix-repl> :b makeFontsConf { fontDirectories = [ "${freefont_ttf}/share/fonts/truetype" ]; }
    ...
    this derivation produced the following outputs:
      out -> /nix/store/jkw848xj0gkbhmvxi0hwpnhzn2716v3c-fonts.conf

    nix-repl> :s pan
    # Builds dependencies of the ‘pan’ derivation, then starts a shell
    # in which the environment variables of the derivation are set

    [nix-shell:/tmp/nix-repl]$ echo $src
    /nix/store/0ibx15r02nnkwiclmfbpzrzjm2y204fh-pan-0.139.tar.bz2

    [nix-shell:/tmp/nix-repl]$ exit

    nix-repl>

Tab completion works on variables in scope and on attribute sets.  For
example:

    $ nix-repl  '<nixpkgs>' '<nixos>'
    Welcome to Nix version 1.6pre3215_2c1ecf8. Type :? for help.

    nix-repl> thunder<TAB> => thunderbird

    nix-repl> <TAB>
    Display all 3634 possibilities? (y or n)

    nix-repl> lib<TAB>
    Display all 291 possibilities? (y or n)

    nix-repl> xorg.libX<TAB>
    xorg.libXdamage  xorg.libXdmcp

    nix-repl> config.networking.use<TAB>
    config.networking.useDHCP   config.networking.usePredictableInterfaceNames

Input history is preserved by readline in ~/.nix-repl-history
The readline "application name" is nix-repl. This allows for nix-repl specific
settings in ~/.inputrc