| Commit message (Expand) | Author | Age | Files | Lines |
| * | python312Packages.python-qt: 3.5.7 -> 3.6.0 | R. Ryantm | 2025-02-11 | 1 | -2/+2 |
| * | python-qt: 3.5.6 -> 3.5.7 | R. Ryantm | 2024-12-30 | 1 | -2/+2 |
| * | python-qt: 3.5.4 -> 3.5.6•••Diff: https://github.com/MeVisLab/pythonqt/compare/v3.5.4...3.5.6
| Guilhem Saurel | 2024-10-08 | 1 | -2/+2 |
| * | treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
| Artturin | 2024-09-25 | 1 | -1/+1 |
| * | python-qt: fix link path•••fix runtime error:
```
dyld[23235]: Library not loaded: libPythonQt-Qt5-Python3.12.3.dylib
Referenced from: <C9EF5524-29A1-3E24-ABD4-DDEC31CF4B47> /nix/store/gnsk805im3lfr3zglmdap5p6j3zjpn05-python-qt-3.5.4/lib/libPythonQt_QtAll-Qt5-Python3.12.3.2.0.dylib
Reason: tried: 'libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OSlibPythonQt-Qt5-Python3.12.3.dylib' (no such file), 'libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/usr/local/lib/libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/usr/lib/libPythonQt-Qt5-Python3.12.3.dylib' (no such file, not in dyld cache), '/Users/gsaurel/local/NixOS/nixpkgs/libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OS/Users/gsaurel/local/NixOS/nixpkgs/libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/Users/gsaurel/local/NixOS/nixpkgs/libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/usr/local/lib/libPythonQt-Qt5-Python3.12.3.dylib' (no such file), '/usr/lib/libPythonQt-Qt5-Python3.12.3.dylib' (no such file, not in dyld cache)
```
| Guilhem Saurel | 2024-09-23 | 1 | -1/+4 |
| * | python-qt: 3.5.2 -> 3.5.4 | R. Ryantm | 2024-07-02 | 1 | -2/+2 |
| * | pkgs/development/libraries: remove unused fetchpatch and other arguments (#31... | Yohann Boniface | 2024-05-23 | 1 | -1/+0 |
| * | python-qt: 3.5.1 -> 3.5.2 | R. Ryantm | 2024-04-30 | 1 | -2/+2 |
| * | python-qt: 3.5.0 -> 3.5.1 | Guilhem Saurel | 2024-04-21 | 1 | -17/+2 |
| * | python-qt: fix code signing on darwin | Guilhem Saurel | 2024-04-16 | 1 | -1/+1 |
| * | python-qt: prefix lib with $out on darwin | Guilhem Saurel | 2024-04-16 | 1 | -0/+9 |
| * | python-qt: fix for darwin | Guilhem Saurel | 2024-04-16 | 1 | -0/+6 |
| * | python-qt: clean | Guilhem Saurel | 2024-04-16 | 1 | -6/+18 |
| * | python-qt: update to v3.5.0 | Guilhem Saurel | 2024-04-16 | 1 | -16/+16 |
| * | python-qt: 3.3.0 -> 3.4.2•••`python-qt` v. 3.3.0 wasn't compatible with Python 3.11 yet
(it contained include statements for header files that were
removed by 3.11 [1] and used a python tuple field that was
replaced through a dedicated getter function [2]).
Switching to version 3.4.2 also means we can remove the
`remove-unneeded-pydebug-include.patch`, as it has since
been merged.
[1]: https://docs.python.org/3.11/whatsnew/3.11.html
> The non-limited API files cellobject.h, classobject.h, code.h, context.h,
> funcobject.h, genobject.h and longintrepr.h have been moved to the Include/cpython
> directory. Moreover, the eval.h header file was removed. These files must not be
> included directly, as they are already included in Python.h: Include Files.
> If they have been included directly, consider including Python.h instead.
[2]: https://github.com/python/cpython/issues/94936#issuecomment-1206497729
| Manuel Frischknecht | 2023-12-06 | 1 | -12/+3 |
| * | treewide: replace http by https when https is a permanent redirection | Ferry Jérémie | 2023-01-22 | 1 | -1/+1 |
| * | python-qt: 3.2 -> 3.3.0 | Weijia Wang | 2023-01-07 | 1 | -9/+26 |
| * | treewide: unzip buildInputs to nativeBuildInputs (#112302) | Ben Siraphob | 2021-02-20 | 1 | -2/+2 |
| * | qtbase: Check for wrapQtAppsHook in setupHook | Thomas Tuegel | 2021-01-25 | 1 | -0/+2 |
| * | pkgs/development/libraries: stdenv.lib -> lib | Ben Siraphob | 2021-01-21 | 1 | -2/+2 |
| * | treewide: remove periods from end of package descriptions | Ben Siraphob | 2020-10-17 | 1 | -1/+1 |
| * | treewide: Per RFC45, remove all unquoted URLs | Michael Reilly | 2020-04-10 | 1 | -1/+1 |
| * | treewide: name -> pname (easy cases) (#66585)•••treewide replacement of
stdenv.mkDerivation rec {
name = "*-${version}";
version = "*";
to pname | volth | 2019-08-15 | 1 | -1/+1 |
| * | csound-qt 0.9.6-beta2 -> 0.9.6-beta3, plus python-qt include changes, example... | hlolli | 2019-03-09 | 1 | -2/+2 |
| * | python-qt init 3.2 | hlolli | 2018-12-03 | 1 | -0/+42 |