lol

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

authored by

Artturi and committed by
GitHub
4fdec14e 2a0a6bf9

+14 -7
+14 -7
pkgs/tools/X11/obconf/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, pkg-config, gtk3, openbox, 2 - imlib2, libxml2, libstartup_notification, makeWrapper, libSM }: 1 + { lib 2 + , stdenv 3 + , fetchgit 4 + , autoreconfHook 5 + , pkg-config 6 + , wrapGAppsHook 7 + , gtk3 8 + , imlib2 9 + , libSM 10 + , libstartup_notification 11 + , libxml2 12 + , openbox 13 + }: 3 14 4 15 stdenv.mkDerivation rec { 5 16 pname = "obconf"; ··· 13 24 14 25 nativeBuildInputs = [ 15 26 autoreconfHook 16 - makeWrapper 17 27 pkg-config 28 + wrapGAppsHook 18 29 ]; 19 30 20 31 buildInputs = [ ··· 28 39 29 40 postPatch = '' 30 41 substituteInPlace configure.ac --replace 2.0.4 ${version} 31 - ''; 32 - 33 - postInstall = '' 34 - wrapProgram $out/bin/obconf --prefix XDG_DATA_DIRS : ${openbox}/share/ 35 42 ''; 36 43 37 44 meta = {