-
-
Notifications
You must be signed in to change notification settings - Fork 104
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: 264f44b1d0aa
head repository: NixOS/nixpkgs-channels
compare: ab322bb4fcbc
Commits on Dec 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e91f467 - Browse repository at this point
Copy the full SHA e91f467View commit details
Commits on Dec 26, 2019
-
In normal use of ROOT the PYTHONPATH is intended to be set when user sources the thisroot.{,s}sh. We do that in the setupHook. This covers the case when thisroot.sh was not sourced.
Configuration menu - View commit details
-
Copy full SHA for 0b28198 - Browse repository at this point
Copy the full SHA 0b28198View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b85ab2 - Browse repository at this point
Copy the full SHA 0b85ab2View commit details -
Configuration menu - View commit details
-
Copy full SHA for debc253 - Browse repository at this point
Copy the full SHA debc253View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c2781d - Browse repository at this point
Copy the full SHA 1c2781dView commit details -
nixosTests.nginx*: review fixes
Co-Authored-By: Florian Klink <flokli@flokli.de>
Configuration menu - View commit details
-
Copy full SHA for abbce76 - Browse repository at this point
Copy the full SHA abbce76View commit details -
Configuration menu - View commit details
-
Copy full SHA for 495b0b5 - Browse repository at this point
Copy the full SHA 495b0b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9fafdc - Browse repository at this point
Copy the full SHA b9fafdcView commit details -
Merge pull request #76541 from veprbl/pr/root_python_wrap
root: wrap python executables
Configuration menu - View commit details
-
Copy full SHA for 984ceb1 - Browse repository at this point
Copy the full SHA 984ceb1View commit details -
When using format-strings, curly brackets need to be escaped using `{{` to avoid errors from python. And apparently, Perl's `==` is used to compare substrings[1] which is why the translation to `assert http_code == "304"` failed as the string contains several headers from curl. [1] Just check `perl <(echo 'die "alarm" if "foo\n304" == 304')`
Configuration menu - View commit details
-
Copy full SHA for c5c7ccf - Browse repository at this point
Copy the full SHA c5c7ccfView commit details -
Merge pull request #76543 from mpickering/wip/branca
Python: Add missing setuptools dependency to branca
Configuration menu - View commit details
-
Copy full SHA for 70564f3 - Browse repository at this point
Copy the full SHA 70564f3View commit details -
Merge pull request #74072 from mayflower/tests-python-nginx
nixosTests.nginx*: port to python
Configuration menu - View commit details
-
Copy full SHA for 466921c - Browse repository at this point
Copy the full SHA 466921cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b193d7 - Browse repository at this point
Copy the full SHA 4b193d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f802ab - Browse repository at this point
Copy the full SHA 6f802abView commit details -
Configuration menu - View commit details
-
Copy full SHA for b43892e - Browse repository at this point
Copy the full SHA b43892eView commit details -
Merge pull request #76442 from r-ryantm/auto-update/tigervnc
tigervnc: 1.10.0 -> 1.10.1
Configuration menu - View commit details
-
Copy full SHA for fa28c77 - Browse repository at this point
Copy the full SHA fa28c77View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ea4896 - Browse repository at this point
Copy the full SHA 1ea4896View commit details -
Configuration menu - View commit details
-
Copy full SHA for 645d99e - Browse repository at this point
Copy the full SHA 645d99eView commit details -
pythonPackages.histbook: remove
The development of this library has been stopped, the github repo archived.
Configuration menu - View commit details
-
Copy full SHA for 88f7725 - Browse repository at this point
Copy the full SHA 88f7725View commit details -
Configuration menu - View commit details
-
Copy full SHA for 690390d - Browse repository at this point
Copy the full SHA 690390dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0caf68 - Browse repository at this point
Copy the full SHA b0caf68View commit details -
simplenote: fix libstdc++ error
Fixes a bug that was noticed during an automated version bump. What was needed was to add an LD_LIBRARY_PATH entry for stdenv.cc.cc in makeWrapper ``` --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ] }" \ ``` The error as seen in developer tools console was: ``` /nix/store/d4b2xcpdf4y4hspbwrmjdz540m493894-simplenote-1.12.0/opt/Simplenote/resources/electron.asar/renderer/init.js:158 Unable to load preload script: /nix/store/d4b2xcpdf4y4hspbwrmjdz540m493894-simplenote-1.12.0/opt/Simplenote/resources/app.asar/desktop/preload.js (anonymous) @ /nix/store/d4b2xcpdf4y4hspbwrmjdz540m493894-simplenote-1.12.0/opt/Simplenote/resources/electron.asar/renderer/init.js:158 /nix/store/d4b2xcpdf4y4hspbwrmjdz540m493894-simplenote-1.12.0/opt/Simplenote/resources/electron.asar/renderer/init.js:159 Error: libstdc++.so.6: cannot open shared object file: No such file or directory at process.module.(anonymous function) [as dlopen] (ELECTRON_ASAR.js:160:31) at Object.Module._extensions..node (internal/modules/cjs/loader.js:722) at Object.module.(anonymous function) [as .node] (ELECTRON_ASAR.js:169:18) at Module.load (internal/modules/cjs/loader.js:602) at tryModuleLoad (internal/modules/cjs/loader.js:541) at Function.Module._load (internal/modules/cjs/loader.js:533) at Module.require (internal/modules/cjs/loader.js:640) at require (internal/modules/cjs/helpers.js:20) at Object.<anonymous> (/nix/store/d4b2xcpdf4y4hspbwrmjdz540m493894-simplenote-1.12.0/opt/Simplenote/resources/app.asar/node_modules/@paulcbetts/spellchecker/lib/spellchecker.js:3) at Object.<anonymous> (/nix/store/d4b2xcpdf4y4hspbwrmjdz540m493894-simplenote-1.12.0/opt/Simplenote/resources/app.asar/node_modules/@paulcbetts/spellchecker/lib/spellchecker.js:116) ``` To (help) anyone that may find have errors like this in the future: makeWrapper requiring the makeLibraryPath with stdenv.cc.cc is fairly common for electron apps. At least ones that use dpkg on prebuilt debian .deb files (my `bitwarden` derivation requires it, too) that use gappsWrapperArgs Thanks @ryantm / r-ryantm and @worldofpeace :) Reference: NixOS/nixpkgs#76421 (review)
Configuration menu - View commit details
-
Copy full SHA for cc20373 - Browse repository at this point
Copy the full SHA cc20373View commit details -
Merge pull request #76555 from veprbl/pr/remove_ndowens
maintainer-list.nix: remove ndowens
Configuration menu - View commit details
-
Copy full SHA for 2272e34 - Browse repository at this point
Copy the full SHA 2272e34View commit details -
Merge pull request #76550 from veprbl/pr/histbook_remove
pythonPackages.histbook: remove
Configuration menu - View commit details
-
Copy full SHA for a10ba57 - Browse repository at this point
Copy the full SHA a10ba57View commit details -
Merge pull request #76558 from Kiwi/simplenote-fix
simplenote: fix libstdc++ error
Configuration menu - View commit details
-
Copy full SHA for ab322bb - Browse repository at this point
Copy the full SHA ab322bbView commit details
There are no files selected for viewing
This file was deleted.