summary refs log tree commit diff
path: root/pkgs/development/libraries/glib
Commit message (Collapse)AuthorAge
* glib: 2.68.2 -> 2.68.3Alyssa Ross2021-06-17
|
* glib: fix buildAndrew Childs2021-05-17
| | | | | | It's not clear why this is required, but glib includes CoreServices headers and calls CoreServices functions, so it's reasonable to link against the framework explicitly.
* Merge pull request #122920 from jtojnar/glib-2681Jan Tojnar2021-05-15
|\ | | | | glib: 2.68.1 → 2.68.2
| * glib: 2.68.1 → 2.68.2Jan Tojnar2021-05-13
| |
* | Merge remote-tracking branch 'origin/master' into staging-nextMartin Weinelt2021-05-08
|\|
| * Merge #121780: treewide meta.maintainers tweaksVladimír Čunát2021-05-08
| |\
| | * treewide maintainers: add teams.{freedesktop,gnome}Jan Tojnar2021-05-07
| | |
| | * treewide: remove worldofpeace from meta.maintainersVladimír Čunát2021-05-07
| | | | | | | | | | | | | | | | | | (It was requested by them.) I left one case due to fetching from their personal repo: pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix
| * | gnome: rename from gnome3Jan Tojnar2021-05-08
| |/ | | | | | | Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
* | Merge staging-next into staginggithub-actions[bot]2021-05-07
|\|
| * glib: 2.66.8 -> 2.68.1Maxine Aubrey2021-05-05
| | | | | | | | Co-Authored-By: Maxine Aubrey <maxeaubrey@gmail.com>
* | glib: fix docs cross compilation (again)Pierre Bourdon2021-04-17
|/ | | | | Do not depend on host gtk-doc when cross compiling (we do not use it there), and document why we need a host gtk-doc in the first place.
* glib: 2.66.4 -> 2.66.8Maxine Aubrey2021-03-18
| | | | | | rebased the schema override patch, adding the same upstream safety but not duplicating the ability to pass multiple directories as this does not appear to be necessary for nix overrides
* glib: fix musl buildJörg Thalheim2021-02-24
|
* glib: fix cross-compilingJörg Thalheim2021-02-24
|
* treewide: fix double quoted strings in meta.descriptionvolth2021-01-24
| | | | Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
* pkgs/development/libraries: stdenv.lib -> libBen Siraphob2021-01-21
|
* treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer2021-01-19
| | | | | | | | | | | | | continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
* glib: 2.66.3 -> 2.66.4R. RyanTM2020-12-27
|
* Merge master into staging-nextFrederik Rietdijk2020-11-27
|\
| * utillinux: rename to util-linuxGraham Christensen2020-11-24
| |
* | glib: 2.66.2 -> 2.66.3R. RyanTM2020-11-18
|/
* glib: 2.66.1 → 2.66.2Jan Tojnar2020-11-09
| | | | | | Fixes compatibility with recent tzdata. https://ftp.gnome.org/pub/GNOME/sources/glib/2.66/glib-2.66.2.news
* Merge branch 'staging-next' into stagingVladimír Čunát2020-10-25
|\
| * treewide: De-inline uses of lib.boolToStringMalte Brandy2020-10-14
| | | | | | | | This commit should not change eval results
* | glib: 2.66.0 → 2.66.1Jan Tojnar2020-10-24
| | | | | | | | https://ftp.gnome.org/pub/GNOME/sources/glib/2.66/glib-2.66.1.news
* | glib: Fix tests on some FSsPiotr Bogdan2020-10-24
| | | | | | | | By applying https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1648
* | glib: 2.64.5 -> 2.66.0Doron Behar2020-10-24
|/
* Merge staging-next into stagingFrederik Rietdijk2020-09-03
|\
| * glib: remove fam module todoJan Tojnar2020-09-02
| | | | | | | | gamin is abandoned and we are going to drop it
* | glib: 2.64.4 -> 2.64.5R. RyanTM2020-08-25
|/
* glib: 2.64.3 -> 2.64.4R. RyanTM2020-07-06
|
* glib: 2.64.1 -> 2.64.3R. RyanTM2020-05-21
|
* Merge pull request #84415 from matthewbauer/mb-cross-fixes-april2020Matthew Bauer2020-04-13
|\ | | | | Cross compilation fixes [april 2020]
| * glib: put gsettings directory in targetMatthew Bauer2020-04-06
| | | | | | | | These should be runtime, not build time deps
* | treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|/
* glib: 2.62.4 -> 2.64.1Tor Hedin Brønner2020-03-24
| | | | gio-launch-desktop is replaced by direct /bin/sh calls
* glib.setupHook: run glibPreFixupPhase before gappsWrapperArgsHookJan Tojnar2020-03-04
| | | | Since we split wrapGAppsHook and move its variable initialization to preFixupPhases in #81475, it was getting run before glibPreFixupPhase which sets GSETTINGS_SCHEMAS_PATH variable gappsWrapperArgsHook depends on. Let's introduce this ugly hack to ensure glibPreFixupPhase will run before gappsWrapperArgsHook.
* glib: 2.62.4 -> 2.62.5worldofpeace2020-02-22
|
* treewide: Fix unsafe concatenation of $LD_LIBRARY_PATHAnders Kaseorg2020-01-15
| | | | | | | | | | Naive concatenation of $LD_LIBRARY_PATH can result in an empty colon-delimited segment; this tells glibc to load libraries from the current directory, which is definitely wrong, and may be a security vulnerability if the current directory is untrusted. (See #67234, for example.) Fix this throughout the tree. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
* glib: remove Autotools specific env varsJan Tojnar2019-12-31
| | | | Even upstream no longer ships Autotools build files.
* treewide: NIX_CFLAGS_COMPILE -> stringRobin Gloster2019-12-31
|
* glib: 2.62.3 -> 2.62.4R. RyanTM2019-12-23
|
* glib: 2.62.2 -> 2.62.3R. RyanTM2019-11-27
|
* glib.setupHook: fix make_glib_find_gsettings_schemasJan Tojnar2019-11-21
| | | | | GSETTINGS_SCHEMAS_PATH needs to contain a list of directories containing glib-2.0/schemas. 770a4c7946a1c55bf6295a34a42e1c4b657d1088 broke that by accidentally adding glib-2.0 to the paths.
* Merge pull request #72812 from NixOS/bash-no-undef-varsJohn Ericson2019-11-08
|\ | | | | cc-wrapper, bintools-wrapper: Remove now unneeded `set {+,-}u`
| * Merge commit 'afa48f16f265fd3e88073bca7929e1e103bd3dc3' into bash-no-undef-varsJohn Ericson2019-11-08
| |\
| * | glib: Fix setup hookJohn Ericson2019-11-08
| | | | | | | | | | | | | | | It was not robust against multiple matching directories, as the called function takes exactly 3 arguments.
* | | Merge pull request #72518 from r-ryantm/auto-update/glibMichael Raskin2019-11-02
|\ \ \ | |_|/ |/| | glib: 2.62.1 -> 2.62.2
| * | glib: 2.62.1 -> 2.62.2R. RyanTM2019-11-01
| |/