File: shell.nix

package info (click to toggle)
nix 2.26.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,524 kB
  • sloc: cpp: 87,540; sh: 8,864; perl: 649; yacc: 466; xml: 410; javascript: 378; lex: 329; ansic: 215; python: 128; sql: 56; makefile: 33; exp: 5; ruby: 1
file content (130 lines) | stat: -rw-r--r-- 2,553 bytes parent folder | download
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
{
  inNixShell ? false,
  contentAddressed ? false,
  fooContents ? "foo",
}:

let
  cfg = import ./config.nix;
in
with cfg;

let
  mkDerivation =
    if contentAddressed then
      args:
      cfg.mkDerivation (
        {
          __contentAddressed = true;
          outputHashMode = "recursive";
          outputHashAlgo = "sha256";
        }
        // args
      )
    else
      cfg.mkDerivation;
in

let
  pkgs = rec {
    setupSh = builtins.toFile "setup" ''
      export VAR_FROM_STDENV_SETUP=foo
      for pkg in $buildInputs; do
        export PATH=$PATH:$pkg/bin
      done

      declare -a arr1=(1 2 "3 4" 5)
      declare -a arr2=(x $'\n' $'x\ny')
      fun() {
        echo blabla
      }
      runHook() {
        eval "''${!1}"
      }
    '';

    stdenv =
      mkDerivation {
        name = "stdenv";
        buildCommand = ''
          mkdir -p $out
          ln -s ${setupSh} $out/setup
        '';
      }
      // {
        inherit mkDerivation;
      };

    shellDrv =
      mkDerivation {
        name = "shellDrv";
        builder = "/does/not/exist";
        VAR_FROM_NIX = "bar";
        ASCII_PERCENT = "%";
        ASCII_AT = "@";
        TEST_inNixShell = if inNixShell then "true" else "false";
        FOO = fooContents;
        inherit stdenv;
        outputs = [
          "dev"
          "out"
        ];
      }
      // {
        shellHook = abort "Ignore non-drv shellHook attr";
      };

    # https://github.com/NixOS/nix/issues/5431
    # See nix-shell.sh
    polo = mkDerivation {
      name = "polo";
      inherit stdenv;
      shellHook = ''
        echo Polo
      '';
    };

    # Used by nix-shell -p
    runCommand =
      name: args: buildCommand:
      mkDerivation (
        args
        // {
          inherit name buildCommand stdenv;
        }
      );

    foo = runCommand "foo" { } ''
      mkdir -p $out/bin
      echo 'echo ${fooContents}' > $out/bin/foo
      chmod a+rx $out/bin/foo
      ln -s ${shell} $out/bin/bash
    '';

    bar = runCommand "bar" { } ''
      mkdir -p $out/bin
      echo 'echo bar' > $out/bin/bar
      chmod a+rx $out/bin/bar
    '';

    bash = shell;
    bashInteractive = runCommand "bash" { } ''
      mkdir -p $out/bin
      ln -s ${shell} $out/bin/bash
    '';

    # ruby "interpreter" that outputs "$@"
    ruby = runCommand "ruby" { } ''
      mkdir -p $out/bin
      echo 'printf %s "$*"' > $out/bin/ruby
      chmod a+rx $out/bin/ruby
    '';

    inherit (cfg) shell;

    callPackage = f: args: f (pkgs // args);

    inherit pkgs;
  };
in
pkgs