Merge pull request #188266 from SFrijters/bugfix-obconf-gsettings

This commit is contained in:
Artturi 2022-09-01 19:33:59 +03:00 committed by GitHub
commit 4fdec14e68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,16 @@
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, gtk3, openbox,
imlib2, libxml2, libstartup_notification, makeWrapper, libSM }:
{ lib
, stdenv
, fetchgit
, autoreconfHook
, pkg-config
, wrapGAppsHook
, gtk3
, imlib2
, libSM
, libstartup_notification
, libxml2
, openbox
}:
stdenv.mkDerivation rec {
pname = "obconf";
@ -13,8 +24,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
autoreconfHook
makeWrapper
pkg-config
wrapGAppsHook
];
buildInputs = [
@ -30,10 +41,6 @@ stdenv.mkDerivation rec {
substituteInPlace configure.ac --replace 2.0.4 ${version}
'';
postInstall = ''
wrapProgram $out/bin/obconf --prefix XDG_DATA_DIRS : ${openbox}/share/
'';
meta = {
description = "GUI configuration tool for openbox";
homepage = "http://openbox.org/wiki/ObConf";