2017-02-16 08:05:11 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python2
|
|
|
|
, libxml2, libXinerama, libXcursor, libXau, libXrandr, libICE, libSM
|
2015-08-03 15:12:27 +01:00
|
|
|
, imlib2, pango, libstartup_notification, makeWrapper }:
|
2010-11-28 10:07:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-03-12 00:18:58 +00:00
|
|
|
name = "openbox-${version}";
|
|
|
|
version = "3.6.1";
|
2010-11-28 10:07:49 +00:00
|
|
|
|
2018-05-24 01:09:54 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
makeWrapper
|
2017-02-16 08:05:11 +00:00
|
|
|
python2.pkgs.wrapPython
|
|
|
|
];
|
|
|
|
|
2018-05-24 01:09:54 +01:00
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
|
|
|
libXinerama libXcursor libXau libXrandr libICE libSM
|
|
|
|
libstartup_notification
|
2015-08-03 15:12:27 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pango imlib2
|
2013-05-13 03:33:31 +01:00
|
|
|
];
|
2010-11-28 10:07:49 +00:00
|
|
|
|
2018-05-24 01:09:54 +01:00
|
|
|
pythonPath = with python2.pkgs; [
|
|
|
|
pyxdg
|
|
|
|
];
|
|
|
|
|
2010-11-28 10:07:49 +00:00
|
|
|
src = fetchurl {
|
2013-05-13 03:33:31 +01:00
|
|
|
url = "http://openbox.org/dist/openbox/${name}.tar.gz";
|
2015-09-29 09:10:31 +01:00
|
|
|
sha256 = "1xvyvqxlhy08n61rjkckmrzah2si1i7nmc7s8h07riqq01vc0jlb";
|
2010-11-28 10:07:49 +00:00
|
|
|
};
|
|
|
|
|
2014-09-15 12:40:41 +01:00
|
|
|
setlayoutSrc = fetchurl {
|
|
|
|
url = "http://openbox.org/dist/tools/setlayout.c";
|
|
|
|
sha256 = "1ci9lq4qqhl31yz1jwwjiawah0f7x0vx44ap8baw7r6rdi00pyiv";
|
|
|
|
};
|
|
|
|
|
|
|
|
postBuild = "gcc -O2 -o setlayout $(pkg-config --cflags --libs x11) $setlayoutSrc";
|
|
|
|
|
2014-03-23 09:49:09 +00:00
|
|
|
# Openbox needs XDG_DATA_DIRS set or it can't find its default theme
|
|
|
|
postInstall = ''
|
2014-09-15 12:40:41 +01:00
|
|
|
cp -a setlayout "$out"/bin
|
2014-03-23 09:49:09 +00:00
|
|
|
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"
|
2018-05-24 01:09:54 +01:00
|
|
|
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
|
2017-02-16 08:05:11 +00:00
|
|
|
'';
|
2014-03-23 09:49:09 +00:00
|
|
|
|
2010-11-28 10:07:49 +00:00
|
|
|
meta = {
|
|
|
|
description = "X window manager for non-desktop embedded systems";
|
|
|
|
homepage = http://openbox.org/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-03-12 00:18:58 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-11-28 10:07:49 +00:00
|
|
|
};
|
|
|
|
}
|