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: 358da474d767
Choose a base ref
...
head repository: NixOS/nix
compare: 0604cfd0ebed
Choose a head ref
  • 7 commits
  • 2 files changed
  • 2 contributors

Commits on Jul 30, 2020

  1. Add "export" to Nix

    This adds a ‘nix export’ command which hooks into nix-bundle. It can
    be used in a similar way as nix-bundle, with the benefit of hooking
    into the new “app” functionality. For instance,
    
    $ nix export nixpkgs#jq
    $ ./jq --help
    jq - commandline JSON processor [version 1.6]
    ...
    $ scp jq machine-without-nix:
    $ ssh machine-without-nix ./jq
    jq - commandline JSON processor [version 1.6]
    ...
    
    Note that nix-bundle currently requires Linux to run. Other exporters
    might not have that requirement.
    
    “exporters” are meant to be reusable, so that, other repos can
    implement their own bundling.
    
    Fixes #3705
    matthewbauer committed Jul 30, 2020
    Copy the full SHA
    2f4250a View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5d04a4d View commit details
    Browse the repository at this point in the history
  3. exporter -> bundler

    matthewbauer committed Jul 30, 2020
    1
    Copy the full SHA
    52407f8 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    1a70563 View commit details
    Browse the repository at this point in the history
  5. Address misc review

    matthewbauer committed Jul 30, 2020
    Copy the full SHA
    22fcfdf View commit details
    Browse the repository at this point in the history
  6. Pass system to bundler

    matthewbauer committed Jul 30, 2020
    Copy the full SHA
    fa2d1fb View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2020

  1. Merge pull request #3880 from matthewbauer/nix-bundle

    Add "bundle" command to Nix
    edolstra committed Jul 31, 2020
    Copy the full SHA
    0604cfd View commit details
    Browse the repository at this point in the history