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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dcd6887da4e6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 19b2898442f8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 23, 2020

  1. Copy the full SHA
    203f382 View commit details
  2. Merge pull request #88454 from adisbladis/pypy-closure-size

    pypy: Remove bootstrap python from closure
    adisbladis authored May 23, 2020
    Copy the full SHA
    19b2898 View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/development/interpreters/python/pypy/default.nix
4 changes: 4 additions & 0 deletions pkgs/development/interpreters/python/pypy/default.nix
Original file line number Diff line number Diff line change
@@ -53,6 +53,10 @@ in with passthru; stdenv.mkDerivation rec {

hardeningDisable = optional stdenv.isi686 "pic";

# Remove bootstrap python from closure
dontPatchShebangs = true;
disallowedReferences = [ python ];

C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" buildInputs;
LIBRARY_PATH = makeLibraryPath buildInputs;
LD_LIBRARY_PATH = makeLibraryPath (filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs);