mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge branch 'fix-openbox' of git://github.com/Shados/nixpkgs
Openbox: Added wrapping for XDG_DATA_DIRS
This commit is contained in:
commit
3d8154359a
@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pkgconfig
|
||||
, libxml2, libXinerama, libXcursor, libXau, libXrandr
|
||||
, imlib2, pango, libstartup_notification }:
|
||||
, imlib2, pango, libstartup_notification, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "openbox-3.5.2";
|
||||
@ -9,6 +9,7 @@ stdenv.mkDerivation rec {
|
||||
pkgconfig libxml2
|
||||
libXinerama libXcursor libXau libXrandr
|
||||
imlib2 pango libstartup_notification
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
@ -16,6 +17,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0cxgb334zj6aszwiki9g10i56sm18i7w1kw52vdnwgzq27pv93qj";
|
||||
};
|
||||
|
||||
# Openbox needs XDG_DATA_DIRS set or it can't find its default theme
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/openbox" --prefix XDG_DATA_DIRS : "$out/share"
|
||||
wrapProgram "$out/bin/openbox-session" --prefix XDG_DATA_DIRS : "$out/share"
|
||||
wrapProgram "$out/bin/openbox-gnome-session" --prefix XDG_DATA_DIRS : "$out/share"
|
||||
wrapProgram "$out/bin/openbox-kde-session" --prefix XDG_DATA_DIRS : "$out/share"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "X window manager for non-desktop embedded systems";
|
||||
homepage = http://openbox.org/;
|
||||
|
Loading…
Reference in New Issue
Block a user