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/nixpkgs
base: 12c10e256ad1
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 0f9b2d9c8607
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Oct 16, 2019

  1. pythonPackages.capstone: add missing setuptools dep

    (cherry picked from commit 80ac778)
    FRidh authored and Mic92 committed Oct 16, 2019
    Copy the full SHA
    57f68f7 View commit details
    Browse the repository at this point in the history
  2. pwndbg: fix runtime python deps, fixes #71071

    pwndbg is a Python module for gdb. The built-in interpreter is used and
    pwndbg offers additional routines. Packaging this is tricky because that
    interpreter needs to be used. Using `python3.withPackages` won't work.
    By setting `NIX_PYTHONPATH`, the interpreter should pick up pwndbg and
    its dependencies.
    
    If `NIX_PYTHONPATH` does not function we can fall back to `PYTHONPATH`.
    An example of when that won't work is if pwndbg runs a script of itself
    in a subshell. `NIX_PYTHONPATH` would be  unset, but `PYTHONPATH` not.
    
    (cherry picked from commit 27a9800)
    FRidh authored and Mic92 committed Oct 16, 2019
    Copy the full SHA
    0f9b2d9 View commit details
    Browse the repository at this point in the history