Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
base: 84f112b1c8d3
Choose a base ref
...
head repository: NixOS/nix
compare: e8d6ee7c1b90
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Sep 25, 2017

  1. Doh

    edolstra committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    e350671 View commit details
    Browse the repository at this point in the history
  2. Add "nix show-derivation"

    This debug command prints a store derivation in JSON format. For
    example:
    
      $ nix show-derivation nixpkgs.hello
      {
        "/nix/store/ayjwpwwiyy04nh9z71rsdgd3q7bra7ch-hello-2.10.drv": {
          "outputs": {
            "out": {
              "path": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10"
            }
          },
          "inputSrcs": [
            "/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
          ],
          "inputDrvs": {
            "/nix/store/13839aqdf6x4k3b785rw5f2l7857l6y3-bash-4.4-p12.drv": [
              "out"
            ],
            "/nix/store/vgdx7fdc7d4iirmnwj2py1nrvr5qwzj7-hello-2.10.tar.gz.drv": [
              "out"
            ],
            "/nix/store/x3kkd0vsqfflbvwf1055l9mr39bg0ms0-stdenv.drv": [
              "out"
            ]
          },
          "platform": "x86_64-linux",
          "builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
          "args": [
            "-e",
            "/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
          ],
          "env": {
            "buildInputs": "",
            "builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
            "configureFlags": "",
            "doCheck": "1",
            "name": "hello-2.10",
            "nativeBuildInputs": "",
            "out": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10",
            "propagatedBuildInputs": "",
            "propagatedNativeBuildInputs": "",
            "src": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz",
            "stdenv": "/nix/store/6zngq1rdh0ans9qyckqimqibgnlvlfrm-stdenv",
            "system": "x86_64-linux"
          }
        }
      }
    
    This removes the need for pp-aterm.
    edolstra committed Sep 25, 2017
    1 Configuration menu
    Copy the full SHA
    e8d6ee7 View commit details
    Browse the repository at this point in the history