summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython
Commit message (Collapse)AuthorAge
* python: wxPython: 4.0.7.post1 -> 4.0.7.post2Frederik Rietdijk2019-11-22
|
* python: wxPython: 4.0.7 -> 4.0.7.post1Frederik Rietdijk2019-11-12
|
* python38Packages.wxPython_4_0: 4.0.6 -> 4.0.7R. RyanTM2019-11-03
|
* python2.pkgs.wxPython: fix buildFrederik Rietdijk2019-09-08
|
* Merge branch 'master' into staging-nextVladimír Čunát2019-08-24
|\ | | | | | | | | | | | | | | | | | | There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
| * python: wxPython: init at 4.0.6tbenst2019-08-18
| |
* | treewide: name -> pname (easy cases) (#66585)volth2019-08-15
|/ | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* python: wxPython: 4.0.4 -> 4.0.6Frederik Rietdijk2019-06-15
|
* wxPython: fix buildFrederik Rietdijk2019-03-03
|
* pythonPackages.wxPython: fixup buildVladimír Čunát2019-02-02
| | | | | | I'm not sure why/when it started failing, but adding pkgconfig shouldn't hurt anything. I see no indication that pythonPackages.pkgconfig was meant.
* python: wxPython: 4.0.3 -> 4.0.4Frederik Rietdijk2019-01-18
|
* php: get rid of composableDerivationFrederik Rietdijk2018-07-26
| | | | | | | Some bugs may have creeped in during the conversion. One flag I had trouble with and so removed was: "--enable-embedded-mysqli"
* wxPython: enable headersBert Moens2017-12-13
| | | | | | | | Headers were disabled, probably because they caused a build error: the header files were being copied to the store path of wxwidgets, but it failed with permission denied. With this commit, the header files stay in the wxPython store path. To point the builder of another derivation to the wxPython header files, some tweaking is needed. E.g. for kicad: cmakeFlags = [ "-DCMAKE_CXX_FLAGS=-I${wxPython}/include/wx-3.0" ]
* pythonPackages: Add version and pname attributes to packagesadisbladis2017-11-23
|
* pythonPackages.wxPython: inject Cairo, Pango and GDK library pathsobadz2017-04-21
|
* wxPython: fix on darwinDmitry Kalinkin2017-02-16
|
* pythonPackages.wxPython: don't pass in pythonPackagesFrederik Rietdijk2016-10-18
|
* wxPython: Disable format hardeningFranz Pletz2016-08-02
|
* pythonPackages.wxPython28: remove packageFrederik Rietdijk2016-05-27
|
* pythonPackages.wxPython{28,30} : use buildPythonPackageFrederik Rietdijk2016-05-27
|
* wxPython: Fix runtime error due to library dependencies not in RUNPATH.Ambroz Bizjak2016-03-16
| | | | | I think what's happening is that the linker automatically adds DT_NEEDED dependencies to some libraries because it finds these libraries are being used directly, but because they're not linked explicitly with -lflags, the gcc wrapper does not add them to RUNPATH.
* fix wxPythonDomen Kožar2015-11-21
|
* wxpython: remove redundant attribute `openglSupport`Vincent Laporte2015-09-06
|
* wxPython: refactor to genericVincent Laporte2015-09-05
|
* wxPython-3: refactorVincent Laporte2015-09-05
|
* wxPython: 3.0.0.0 -> 3.0.2.0Vincent Laporte2015-09-05
|
* pythonPackages.runsnakerun: add performance/memory GUI profiler for pythonDomen Kožar2014-11-04
|
* pypy: handle unsupported packagesDomen Kožar2014-09-12
|
* Add wxPython-3.0 with OpenGL support.ambrop7@gmail.com2014-03-25
|
* Remove wxPython26 since it is not usedYury G. Kudryashov2011-10-11
| | | | svn path=/nixpkgs/trunk/; revision=29773
* * wxPython updated to 2.8.12.0.Eelco Dolstra2011-09-20
| | | | svn path=/nixpkgs/trunk/; revision=29395
* * Move wxPython into python-packages.nix so that you can get wxPythonEelco Dolstra2011-05-04
| | | | | | | built for the appropriate Python version (e.g. python26Packages.wxPython). svn path=/nixpkgs/trunk/; revision=27127
* * wxPython updated to 2.8.12.0.Eelco Dolstra2011-05-03
| | | | | | | * wxPython builder: wrap the Python programs (such as pyshell) so that they actually work. svn path=/nixpkgs/trunk/; revision=27122
* * Reverted most of the recent Python refactorings, as discussed. It'sEelco Dolstra2010-04-21
| | | | | | | | | | | a worthy goal to move the Python packages that are currently in all-packages.nix into a single attribute set, but this doesn't require moving python-packages.nix or the other changes made to that file. The Python packages in all-packages.nix should simply be moved to python-packages.nix, and ideally changed to use buildPythonPackage. svn path=/nixpkgs/trunk/; revision=21196
* - adding experimental python31 buildMarc Weber2010-04-17
| | | | | | | | | - cleanup python libraries: * moving all python libraries into a attr set into a directory so that expressions can be used for both: python 2.5 and 2.6 easily * disabling packages which don't build svn path=/nixpkgs/trunk/; revision=21142
* * Got rid of a lot of "postInstall=postInstall" and similar lines inEelco Dolstra2009-04-23
| | | | | | | | | | builders. These are redundant now. * Inlined some trivial builders. * Removed a few explicit setup-hook creations. This is done automatically now if setupHook is set. * Deleted the initscripts package. NixOS doesn't use it anymore. svn path=/nixpkgs/branches/stdenv-updates/; revision=15276
* * Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra2007-08-27
| | | | | | find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
* * Very subtle purity error: on NixOS, wxGTK wasn't being built withEelco Dolstra2007-05-31
| | | | | | | | | Xinerama support. It gets libXinerama as an explicit build input, but it checks for its existence in /usr/X11/include etc. This caused Bittorrent to fail (NIXPKGS-61). Backported the builder fixes from wxGTK 2.8. svn path=/nixpkgs/trunk/; revision=8813
* * Added wxGTK/wxPython 2.8. However this was quite pointless asEelco Dolstra2007-05-31
| | | | | | Bittorrent is even more broken with wxPython 2.8. svn path=/nixpkgs/trunk/; revision=8812
* * BitTorrent 5.0.3.Eelco Dolstra2006-12-13
| | | | | | * wxPython 2.6.3. svn path=/nixpkgs/trunk/; revision=7341
* * "." -> "source".Eelco Dolstra2005-12-05
| | | | svn path=/nixpkgs/trunk/; revision=4335
* * catamaran.labs.cs.uu.nl -> nix.cs.uu.nl.Eelco Dolstra2005-08-22
| | | | svn path=/nixpkgs/trunk/; revision=3660
* * Move tarballs to catamaran so that we are no longer dependent on aEelco Dolstra2005-02-15
| | | | | | gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
* * Updated some more packages. However, bittorrent and vlc don't workEelco Dolstra2004-04-02
| | | | | | | right now because wxGTK is broken (it depends on internal symbols in GTK which where made private in GTK 2.4). svn path=/nixpkgs/trunk/; revision=907
* * Remove trivial builders.Eelco Dolstra2004-03-29
| | | | | | | | | | | | * Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
* * Added wxPython.Eelco Dolstra2004-02-17
svn path=/nixpkgs/trunk/; revision=795