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: adf2fbbdc2c9
Choose a base ref
...
head repository: NixOS/nix
compare: 26cf0c674f54
Choose a head ref
  • 5 commits
  • 13 files changed
  • 1 contributor

Commits on Jun 29, 2020

  1. Move App

    edolstra committed Jun 29, 2020
    Copy the full SHA
    bc03c6f View commit details
    Browse the repository at this point in the history
  2. Fix bash completion

    edolstra committed Jun 29, 2020
    Copy the full SHA
    ca94686 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    b681408 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    50f13b0 View commit details
    Browse the repository at this point in the history
  5. nix run: Use packages/legacyPackages as fallback if there is no app d…

    …efinition
    
    'nix run' will try to run $out/bin/<name>, where <name> is the
    derivation name (excluding the version). This often works well:
    
      $ nix run nixpkgs#hello
      Hello, world!
    
      $ nix run nix -- --version
      nix (Nix) 2.4pre20200626_adf2fbb
    
      $ nix run patchelf -- --version
      patchelf 0.11.20200623.e61654b
    
      $ nix run nixpkgs#firefox -- --version
      Mozilla Firefox 77.0.1
    
      $ nix run nixpkgs#gimp -- --version
      GNU Image Manipulation Program version 2.10.14
    
    though not always:
    
      $ nix run nixpkgs#git
      error: unable to execute '/nix/store/kp7wp760l4gryq9s36x481b2x4rfklcy-git-2.25.4/bin/git-minimal': No such file or directory
    edolstra committed Jun 29, 2020
    2
    Copy the full SHA
    26cf0c6 View commit details
    Browse the repository at this point in the history