malcontent: 0.7.0 → 0.8.0

* Update: https://gitlab.freedesktop.org/pwithnall/malcontent/-/releases/0.8.0
    * Fix the separation patch.
    * Add `itstool` to ui (needed for building localized help).
* Use `pkg-config` instead of the `pkgconfig` alias.
* Fix some issues related to multiple outputs:
    * Make the module pass specific output to `dbus.packages` since the `dbus` NixOS module will not generate configuration with correct interface paths otherwise.
    * Change `malcontent-ui` package to primarily-a-program type derivation (`out`+`lib` instead of `bin`+`out`) since there are more and more `malcontent-control`-specific assets.
        * This also fixes the issue where application data (desktop files, icons…) were installed to `out`, which is not installed by `environment.systemPackages`/`system-path.nix`’s `buildEnv` by default when `bin` output is also present.
    * Make `malcontent` package install `out` output too so that `system-path.nix` links that too. It contains the AccountsService & Polkit data files.
    * Split the library and PAM module out of `malcontent.out` so that they are not installed with the data files.
        * This revealed a bug in the `gobject-introspection` setup hook.
This commit is contained in:
Jan Tojnar
2020-07-23 21:59:23 +02:00
parent 5717d9d2f7
commit 097117cf72
4 changed files with 58 additions and 25 deletions
+3 -1
View File
@@ -3,6 +3,7 @@
, ninja
, pkg-config
, gobject-introspection
, itstool
, wrapGAppsHook
, glib
, accountsservice
@@ -20,7 +21,7 @@ stdenv.mkDerivation rec {
inherit (malcontent) version src;
outputs = [ "bin" "out" "dev" ];
outputs = [ "out" "lib" "dev" ];
patches = [
# Allow installing installed tests to a separate output.
@@ -35,6 +36,7 @@ stdenv.mkDerivation rec {
ninja
pkg-config
gobject-introspection
itstool
desktop-file-utils
wrapGAppsHook
];