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: a859db6d3391
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d59df853d6b5
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on Nov 4, 2019

  1. python: temporary export hack

    probably add mkDerivation.env attrs to be exported
    globin committed Nov 4, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bd8bca8 View commit details
  2. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    7a40860 View commit details
  3. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    d778012 View commit details
  4. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d59df85 View commit details
1 change: 1 addition & 0 deletions pkgs/development/interpreters/python/cpython/default.nix
Original file line number Diff line number Diff line change
@@ -177,6 +177,7 @@ in with passthru; stdenv.mkDerivation {
for i in /usr /sw /opt /pkg; do # improve purity
substituteInPlace ./setup.py --replace $i /no-such-path
done
export LIBS LDFLAGS CPPFLAGS PYTHONHASHSEED
'' + optionalString stdenv.isDarwin ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"
export MACOSX_DEPLOYMENT_TARGET=10.6
Original file line number Diff line number Diff line change
@@ -4,9 +4,10 @@ echo "Sourcing python-imports-check-hook.sh"
pythonImportsCheckPhase () {
echo "Executing pythonImportsCheckPhase"

if [ -n "$pythonImportsCheck" ]; then
echo "Check whether the following modules can be imported: $pythonImportsCheck"
cd $out && eval "@pythonCheckInterpreter@ -c 'import os; import importlib; list(map(lambda mod: importlib.import_module(mod), os.environ[\"pythonImportsCheck\"].split()))'"
if [ -n "${pythonImportsCheck[@]-}" ]; then
echo "Check whether the following modules can be imported: ${pythonImportsCheck[@]}"
export PYTHON_IMPORTS_CHECK="${pythonImportsCheck[@]}"
cd $out && eval "@pythonCheckInterpreter@ -c 'import os; import importlib; list(map(lambda mod: importlib.import_module(mod), os.environ[\"PYTHON_IMPORTS_CHECK\"].split()))'"
fi
}

2 changes: 0 additions & 2 deletions pkgs/development/libraries/apache-activemq/default.nix
Original file line number Diff line number Diff line change
@@ -9,8 +9,6 @@ stdenv.mkDerivation rec {
url = "mirror://apache/activemq/${version}/${pname}-${version}-bin.tar.gz";
};

phases = [ "unpackPhase" "installPhase" ];

installPhase = ''
mkdir -p $out
mv * $out/
12 changes: 7 additions & 5 deletions pkgs/development/python-modules/bootstrapped-pip/default.nix
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {

srcs = [ wheel.src pip.src setuptools.src ];
sourceRoot = ".";
dontMakeSourcesWritable = true;

dontUseSetuptoolsBuild = true;
dontUsePipInstall = true;
@@ -21,16 +22,17 @@ stdenv.mkDerivation rec {
(pipInstallHook.override{pip=null;})
(setuptoolsBuildHook.override{setuptools=null; wheel=null;})
];
nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = [ python ];

postUnpack = ''
chmod -R u+w *
'';

postPatch = ''
mkdir -p $out/bin
'';

nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = [ python ];

buildPhase = ":";

installPhase = stdenv.lib.strings.optionalString (!stdenv.hostPlatform.isWindows) ''
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
'' + ''
2 changes: 0 additions & 2 deletions pkgs/servers/sql/sqlite/jdbc/default.nix
Original file line number Diff line number Diff line change
@@ -11,8 +11,6 @@ stdenv.mkDerivation rec {
sha256 = "1xk5fi2wzq3jspvbdm5hvs78501i14jy3v7x6fjnh5fnpqdacpd4";
};

phases = [ "installPhase" ];

installPhase = ''
install -m444 -D ${src}/share/java/*${pname}-${version}.jar "$out/share/java/${pname}-${version}.jar"
'';