summary refs log tree commit diff
path: root/pkgs/development
Commit message (Collapse)AuthorAge
* libmypaint: fix build with automake 1.16Jan Tojnar2018-03-22
|
* Merge pull request #37612 from volth/patch-118Jörg Thalheim2018-03-22
|\ | | | | libguestfs: doInstallCheck only with appliance
| * libguestfs: doInstallCheck only with appliancevolth2018-03-22
| |
* | pythonPackages.notebook: cleanupVaibhav Sagar2018-03-22
| | | | | | | | As discussed in https://github.com/NixOS/nixpkgs/pull/37607#issuecomment-375226186.
* | Merge pull request #37607 from vaibhavsagar/bump-pythonpackages-notebookRobert Schütz2018-03-22
|\ \ | | | | | | pythonPackages.notebook: 5.4.0 -> 5.4.1
| * | pythonPackages.notebook: 5.4.0 -> 5.4.1Vaibhav Sagar2018-03-22
| | |
* | | spice-gtk: clean upJan Tojnar2018-03-22
| | |
* | | pipewire: clean upJan Tojnar2018-03-22
| |/ |/|
* | libcloudproviders: fix buildJan Tojnar2018-03-22
| |
* | gtkspell3: add girJan Tojnar2018-03-22
| |
* | libwnck3: build girJan Tojnar2018-03-22
| |
* | webkitgtk220x: cleanupJan Tojnar2018-03-22
| |
* | gtk3: fix gtk-encode-symbolic-svgJan Tojnar2018-03-22
| |
* | geoclue2: build girJan Tojnar2018-03-22
| |
* | spice-gtk: add vapiJan Tojnar2018-03-22
| |
* | libvirt-glib: add vapiJan Tojnar2018-03-22
| |
* | gnome3.gvfs: fix buildTor Hedin Brønner2018-03-22
| | | | | | | | Also fix xfce.gvfs
* | farstream: build girJan Tojnar2018-03-22
| |
* | webkitgtk: patch shebangs in postPatchHerwig Hochleitner2018-03-22
| | | | | | | | this eliminates a build error due to /bin/bash in build scripts
* | webkitgtk: 2.18 -> 2.20Herwig Hochleitner2018-03-22
| |
* | libdazzle: init at 3.28.0Andreas Rammhold2018-03-22
| |
* | librsvg: always build introspectionJan Tojnar2018-03-22
| | | | | | | | We have multiple outputs nowadays.
* | gvfs: fix buildTor Hedin Brønner2018-03-22
| |
* | appstream-glib: 0.7.6 → 0.7.7Jan Tojnar2018-03-22
| | | | | | | | | | Update & fix build – installed tests in $out output mentioned binaries from $dev output.
* | enchant2: init at 2.2.3Jan Tojnar2018-03-22
| |
* | gnome3.vala: fix darwin buildJan Tojnar2018-03-22
| |
* | valadoc: fix buildJan Tojnar2018-03-22
| |
* | atk: port to mesonJan Tojnar2018-03-22
| |
* | gnome3.webkitgtk: fix buildJan Tojnar2018-03-22
| |
* | gtksourceview4: init at 4.0.0Jan Tojnar2018-03-22
| |
* | gtksourceview3: add vala dependencyJan Tojnar2018-03-22
| | | | | | | | Needed by gnome-calculator.
* | gtksourceview: move out of gnome3Jan Tojnar2018-03-22
| |
* | glib-networking: fix buildJan Tojnar2018-03-22
| |
* | libsoup: fix build & clean upJan Tojnar2018-03-22
| |
* | gnome3.libhttpseverywhere: fix buildJan Tojnar2018-03-22
| |
* | vala_0_40: init at 0.40.0Jan Tojnar2018-03-22
| |
* | gnome3: automated updateJan Tojnar2018-03-22
| |
* | gobjectIntrospection: fix incorrect GIR shared library pathsJan Tojnar2018-03-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a library path contained the library name it was eagerly matched libfwupd.so.2 => /build/fwupd-1.0.5/build/libfwupd/libfwupd.so.2 (0x00007ffff7bbd000) ^^^^^^^^^^^^^^^^^^^^^^ libgweather-3.so.15 => /build/libgweather-3.28.0/build/libgweather/libgweather-3.so.15 (0x00007ffff7bae000) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ which lead to a broken shared library path in the generated GIR file. This patch allows the soname on the left-hand side of the arrow to be matched to avoid the trap of the right-hand side. A negative lookahead had to be added to select the store path, since only the first match is taken into account. libglib-2.0.so.0 => /nix/store/dqlc8y4phlg1hmdbwkhqfwhnxcac88d1-glib-2.56.0/lib/libglib-2.0.so.0 (0x00007ffff6400000) This will not fix non-GNU platforms, where the soname is not printed first, but we cannot do much without structured ldd output. Closes: https://github.com/NixOS/nixpkgs/issues/34988
* | gdk_pixbuf: 2.36.7 → 2.36.11Jan Tojnar2018-03-22
| |
* | meson: set multiple output dirs in setup hookJan Tojnar2018-03-22
| | | | | | | | Closes: #32636
* | meson: allow dirs outside of prefixJan Tojnar2018-03-22
| | | | | | | | | | | | | | | | | | Upstream insists on not allowing bindir and other dir options outside of prefix for some reason: https://github.com/mesonbuild/meson/issues/2561 We remove the check so multiple outputs can work sanely.
* | meson: fix rpath fixupJan Tojnar2018-03-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In common distributions, RPATH is only needed for internal libraries so meson removes everything else. With Nix, the locations of libraries are not as predictable, therefore we need to keep them in the RPATH. [1] Previously we have just kept the RPATH produced by the linker, patching meson not to remove it. This deprived us of potentially replacing it with install_rpath provided by project so we had to re-add it manually, and also introduced a vulnerability of keeping build paths in RPATH. This commit restores the clean-up but modifies it so the items starting with /nix/store are retained. This should be relatively safe since the store is immutable, however, there might be some unwanted retainment of build_rpath [2] if it contains paths from Nix store. [1]: https://github.com/NixOS/nixpkgs/issues/31222#issuecomment-365811634 [2]: http://mesonbuild.com/Release-notes-for-0-42-0.html#added-build_rpath-keyword-argument
* | Merge pull request #37236 from matthewbauer/auto-update/activemqMatthew Justin Bauer2018-03-21
|\ \ | | | | | | activemq: 5.13.4 -> 5.14.5
| * | activemq: 5.13.4 -> 5.14.5Matthew Bauer2018-03-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5/bin/activemq --version` and found version 5.14.5 - ran `/nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5/bin/activemq version` and found version 5.14.5 - ran `/nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5/bin/activemq help` and found version 5.14.5 - ran `/nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5/bin/macosx/wrapper --help` got 0 exit code - ran `/nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5/bin/macosx/wrapper --help` and found version 5.14.5 - ran `/nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5/bin/activemq-diag -h` got 0 exit code - found 5.14.5 with grep in /nix/store/bryzxhk66p8wvdskcgah9a3n2h12f81r-apache-activemq-5.14.5
* | | Merge pull request #37238 from matthewbauer/auto-update/antMatthew Justin Bauer2018-03-21
|\ \ \ | |_|/ |/| | ant: 1.9.6 -> 1.10.2
| * | ant: 1.9.6 -> 1.10.2Matthew Bauer2018-03-17
| |/ | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.10.2 with grep in /nix/store/ymhiik4c7604dxzlnvrrzj88d2lkcy16-ant-1.10.2
* | Renpy and pygame_sdl2 update - 6.99.14 (#33943)rardiol2018-03-21
| | | | | | | | | | | | * pygame_sdl2: 6.99.10.1227 -> 2.1.0-6.99.14 * renpy: 6.99.12.4 -> 6.99.14
* | netcdf: 4.6.0 -> 4.6.1Ryan Mulligan2018-03-21
| | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/zchkzwsgsnl8aqbxzvi7hh93bdfl4759-netcdf-4.6.1/bin/nc-config --help` got 0 exit code - ran `/nix/store/zchkzwsgsnl8aqbxzvi7hh93bdfl4759-netcdf-4.6.1/bin/nc-config --version` and found version 4.6.1 - found 4.6.1 with grep in /nix/store/zchkzwsgsnl8aqbxzvi7hh93bdfl4759-netcdf-4.6.1 - directory tree listing: https://gist.github.com/74ab9782611602d870caba813c09697e
* | mysocketw: fix darwin buildDaiderd Jordan2018-03-21
| | | | | | | | /cc ZHF #36454
* | unixODBC: 2.3.5 -> 2.3.6Ryan Mulligan2018-03-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/isql --help` got 0 exit code - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/isql --version` and found version 2.3.6 - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/isql --help` and found version 2.3.6 - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/odbcinst --help` got 0 exit code - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/odbcinst --version` and found version 2.3.6 - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/odbcinst --help` and found version 2.3.6 - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/iusql --help` got 0 exit code - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/iusql --version` and found version 2.3.6 - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/iusql --help` and found version 2.3.6 - ran `/nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6/bin/odbc_config --version` and found version 2.3.6 - found 2.3.6 with grep in /nix/store/mmcxnlq2km3jcd0iwfnfrqr1v3g1k0ax-unixODBC-2.3.6 - directory tree listing: https://gist.github.com/09c59bac7a63f422b01e46272e81915b