mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
colord: wrap to use GSettings
This commit is contained in:
parent
fabc930ddd
commit
d6d8dfd671
@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchurl, bash-completion
|
||||
, glib, polkit, pkgconfig, gettext, gusb, lcms2, sqlite, systemd, dbus
|
||||
, gobjectIntrospection, argyllcms, meson, ninja, libxml2, vala_0_38
|
||||
, libgudev, sane-backends, udev }:
|
||||
, libgudev, sane-backends, udev, gnome3, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "colord-1.4.1";
|
||||
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
./fix-build-paths.patch
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ meson pkgconfig vala_0_38 ninja gettext libxml2 gobjectIntrospection ];
|
||||
nativeBuildInputs = [ meson pkgconfig vala_0_38 ninja gettext libxml2 gobjectIntrospection makeWrapper ];
|
||||
|
||||
buildInputs = [ glib polkit gusb lcms2 sqlite systemd dbus
|
||||
bash-completion argyllcms libgudev sane-backends ];
|
||||
@ -36,6 +36,12 @@ stdenv.mkDerivation rec {
|
||||
glib-compile-schemas $out/share/glib-2.0/schemas
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram "$out/libexec/colord-session" \
|
||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share" \
|
||||
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "System service to manage, install and generate color profiles to accurately color manage input and output devices";
|
||||
homepage = https://www.freedesktop.org/software/colord/;
|
||||
|
Loading…
Reference in New Issue
Block a user