2013-06-14 14:53:36 +02:00
|
|
|
{ args, xorg }:
|
|
|
|
|
2009-11-21 15:49:25 +01:00
|
|
|
let
|
2015-04-11 11:25:02 +02:00
|
|
|
inherit (args) stdenv makeWrapper;
|
2014-08-13 02:40:57 +02:00
|
|
|
inherit (stdenv) lib isDarwin;
|
|
|
|
inherit (lib) overrideDerivation;
|
|
|
|
|
2013-06-14 14:53:36 +02:00
|
|
|
setMalloc0ReturnsNullCrossCompiling = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="$configureFlags --enable-malloc0returnsnull";
|
|
|
|
fi
|
|
|
|
'';
|
2013-06-05 17:26:51 +02:00
|
|
|
|
|
|
|
gitRelease = { libName, version, rev, sha256 } : attrs : attrs // {
|
|
|
|
name = libName + "-" + version;
|
|
|
|
src = args.fetchgit {
|
|
|
|
url = git://anongit.freedesktop.org/xorg/lib/ + libName;
|
|
|
|
inherit rev sha256;
|
|
|
|
};
|
|
|
|
buildInputs = attrs.buildInputs ++ [ xorg.utilmacros ];
|
|
|
|
preConfigure = (attrs.preConfigure or "") + "\n./autogen.sh";
|
|
|
|
};
|
|
|
|
|
|
|
|
compose = f: g: x: f (g x);
|
2009-11-21 15:49:25 +01:00
|
|
|
in
|
2009-04-28 15:58:35 +02:00
|
|
|
{
|
2013-04-18 21:33:17 +02:00
|
|
|
encodings = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ xorg.mkfontscale ];
|
|
|
|
};
|
2009-04-28 15:58:35 +02:00
|
|
|
|
2012-10-15 18:28:09 +02:00
|
|
|
fontcursormisc = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ xorg.mkfontscale ];
|
|
|
|
};
|
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
fontmiscmisc = attrs: attrs // {
|
|
|
|
postInstall =
|
|
|
|
''
|
2009-11-06 16:16:47 +01:00
|
|
|
ALIASFILE=${xorg.fontalias}/share/fonts/X11/misc/fonts.alias
|
|
|
|
test -f $ALIASFILE
|
|
|
|
ln -s $ALIASFILE $out/lib/X11/fonts/misc/fonts.alias
|
2009-10-02 20:03:23 +02:00
|
|
|
'';
|
2009-04-28 15:58:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
imake = attrs: attrs // {
|
|
|
|
inherit (xorg) xorgcffiles;
|
|
|
|
x11BuildHook = ./imake.sh;
|
2015-08-21 01:12:27 +02:00
|
|
|
patches = [./imake.patch ./imake-cc-wrapper-uberhack.patch];
|
2015-02-04 11:00:50 +01:00
|
|
|
setupHook = if stdenv.isDarwin then ./darwin-imake-setup-hook.sh else null;
|
|
|
|
CFLAGS = [ "-DIMAKE_COMPILETIME_CPP=\\\"${if stdenv.isDarwin
|
|
|
|
then "${args.tradcpp}/bin/cpp"
|
|
|
|
else "gcc"}\\\""
|
|
|
|
];
|
|
|
|
tradcpp = if stdenv.isDarwin then args.tradcpp else null;
|
2009-04-28 15:58:35 +02:00
|
|
|
};
|
|
|
|
|
2016-07-20 12:33:06 +02:00
|
|
|
intelgputools = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.cairo args.libunwind ];
|
|
|
|
};
|
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
mkfontdir = attrs: attrs // {
|
2012-10-15 19:06:59 +02:00
|
|
|
preBuild = "substituteInPlace mkfontdir.in --replace @bindir@ ${xorg.mkfontscale}/bin";
|
2009-04-28 15:58:35 +02:00
|
|
|
};
|
2009-11-21 11:11:44 +01:00
|
|
|
|
2015-03-11 16:53:24 +01:00
|
|
|
mkfontscale = attrs: attrs // {
|
|
|
|
patches = lib.singleton (args.fetchpatch {
|
|
|
|
name = "mkfontscale-fix-sig11.patch";
|
|
|
|
url = "https://bugs.freedesktop.org/attachment.cgi?id=113951";
|
|
|
|
sha256 = "0i2xf768mz8kvm7i514v0myna9m6jqw82f9a03idabdpamxvwnim";
|
|
|
|
});
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
};
|
|
|
|
|
2009-11-21 11:11:44 +01:00
|
|
|
libxcb = attrs : attrs // {
|
2014-08-30 08:27:43 +02:00
|
|
|
nativeBuildInputs = [ args.python ];
|
2015-09-13 08:35:48 +02:00
|
|
|
configureFlags = "--enable-xkb --enable-xinput";
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" "doc" ];
|
2009-11-21 11:44:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
xcbproto = attrs : attrs // {
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ args.python ];
|
2009-11-21 11:11:44 +01:00
|
|
|
};
|
2009-04-28 15:58:35 +02:00
|
|
|
|
2009-11-21 15:49:25 +01:00
|
|
|
libX11 = attrs: attrs // {
|
2014-08-27 01:14:09 +02:00
|
|
|
outputs = [ "dev" "out" "man" ];
|
2014-08-22 01:40:14 +02:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling + ''
|
|
|
|
sed 's,^as_dummy.*,as_dummy="\$PATH",' -i configure
|
|
|
|
'';
|
2011-02-09 16:17:15 +01:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Remove useless DocBook XML files.
|
|
|
|
rm -rf $out/share/doc
|
|
|
|
'';
|
2014-08-17 22:17:13 +02:00
|
|
|
CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -";
|
2009-11-21 15:49:25 +01:00
|
|
|
};
|
|
|
|
|
2015-09-17 23:42:54 +02:00
|
|
|
libAppleWM = attrs: attrs // {
|
2015-10-27 01:13:23 +01:00
|
|
|
buildInputs = attrs.buildInputs ++ [ args.apple_sdk.frameworks.ApplicationServices ];
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace src/Makefile.in --replace -F/System -F${args.apple_sdk.frameworks.ApplicationServices}
|
|
|
|
'';
|
2009-11-21 15:49:25 +01:00
|
|
|
};
|
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
libXau = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
libXdmcp = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
2014-06-09 19:47:31 +02:00
|
|
|
libXfont = attrs: attrs // {
|
2015-10-13 21:51:53 +02:00
|
|
|
outputs = [ "dev" "out" ];
|
2014-06-09 19:47:31 +02:00
|
|
|
propagatedBuildInputs = [ args.freetype ]; # propagate link reqs. like bzip2
|
2014-08-13 02:40:57 +02:00
|
|
|
# prevents "misaligned_stack_error_entering_dyld_stub_binder"
|
|
|
|
configureFlags = lib.optionals isDarwin [
|
|
|
|
"CFLAGS=-O0"
|
|
|
|
];
|
2014-06-09 19:47:31 +02:00
|
|
|
};
|
|
|
|
|
2009-11-21 15:49:25 +01:00
|
|
|
libXxf86vm = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2009-11-21 15:49:25 +01:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
|
|
|
};
|
|
|
|
|
2011-02-09 16:09:29 +01:00
|
|
|
# Propagate some build inputs because of header file dependencies.
|
2011-02-14 11:04:37 +01:00
|
|
|
# Note: most of these are in Requires.private, so maybe builder.sh
|
|
|
|
# should propagate them automatically.
|
2009-11-21 15:49:25 +01:00
|
|
|
libXt = attrs: attrs // {
|
2014-08-24 08:15:23 +02:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling + ''
|
|
|
|
sed 's,^as_dummy.*,as_dummy="\$PATH",' -i configure
|
|
|
|
'';
|
2011-02-08 18:39:28 +01:00
|
|
|
propagatedBuildInputs = [ xorg.libSM ];
|
2014-08-24 08:15:23 +02:00
|
|
|
CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -";
|
2015-10-28 18:56:00 +01:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
2009-11-21 15:49:25 +01:00
|
|
|
};
|
|
|
|
|
2013-07-24 05:30:31 +02:00
|
|
|
# See https://bugs.freedesktop.org/show_bug.cgi?id=47792
|
|
|
|
# Once the bug is fixed upstream, this can be removed.
|
|
|
|
luit = attrs: attrs // {
|
|
|
|
configureFlags = "--disable-selective-werror";
|
|
|
|
};
|
|
|
|
|
2011-02-09 16:09:29 +01:00
|
|
|
compositeproto = attrs: attrs // {
|
|
|
|
propagatedBuildInputs = [ xorg.fixesproto ];
|
|
|
|
};
|
2012-09-27 18:38:48 +02:00
|
|
|
|
2015-10-13 14:50:31 +02:00
|
|
|
libICE = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
2011-02-09 16:09:29 +01:00
|
|
|
libXcomposite = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2011-02-09 16:09:29 +01:00
|
|
|
propagatedBuildInputs = [ xorg.libXfixes ];
|
|
|
|
};
|
2012-09-27 18:38:48 +02:00
|
|
|
|
2011-02-14 11:04:37 +01:00
|
|
|
libXaw = attrs: attrs // {
|
2015-10-28 18:56:00 +01:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
2011-02-14 11:04:37 +01:00
|
|
|
propagatedBuildInputs = [ xorg.libXmu ];
|
|
|
|
};
|
2012-09-27 18:38:48 +02:00
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
libXcursor = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
libXdamage = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
};
|
|
|
|
|
2009-11-21 15:49:25 +01:00
|
|
|
libXft = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2012-09-27 18:38:48 +02:00
|
|
|
propagatedBuildInputs = [ xorg.libXrender args.freetype args.fontconfig ];
|
2009-11-21 15:49:25 +01:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
2014-06-09 19:47:31 +02:00
|
|
|
# the include files need ft2build.h, and Requires.private isn't enough for us
|
|
|
|
postInstall = ''
|
2015-08-20 15:10:24 +02:00
|
|
|
sed "/^Requires:/s/$/, freetype2/" -i "$dev/lib/pkgconfig/xft.pc"
|
2014-06-09 19:47:31 +02:00
|
|
|
'';
|
2009-11-21 15:49:25 +01:00
|
|
|
};
|
|
|
|
|
2009-10-29 18:56:10 +01:00
|
|
|
libXext = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" "doc" ];
|
2013-06-05 17:26:51 +02:00
|
|
|
propagatedBuildInputs = [ xorg.xproto xorg.libXau ];
|
2009-11-21 15:49:25 +01:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
2009-10-29 18:56:10 +01:00
|
|
|
};
|
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
libXfixes = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
libXi = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" "doc" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
libXinerama = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
};
|
|
|
|
|
2015-08-21 20:36:06 +02:00
|
|
|
libXmu = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
buildFlags = ''BITMAP_DEFINES=-DBITMAPDIR=\"/no-such-path\"'';
|
|
|
|
};
|
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
libXrandr = attrs: attrs // {
|
2015-10-25 19:34:30 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
|
|
|
propagatedBuildInputs = [xorg.libXrender];
|
|
|
|
};
|
|
|
|
|
2015-10-13 14:50:31 +02:00
|
|
|
libSM = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
propagatedBuildInputs = [ xorg.libICE ];
|
|
|
|
};
|
2013-06-05 17:26:51 +02:00
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
libXrender = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
|
|
|
};
|
2013-06-05 17:26:51 +02:00
|
|
|
|
2015-10-13 21:51:53 +02:00
|
|
|
libXres = attrs: attrs // {
|
2015-10-28 18:56:00 +01:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
2015-10-13 21:51:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
libXv = attrs: attrs // {
|
2015-10-28 18:56:00 +01:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
2015-10-13 21:51:53 +02:00
|
|
|
};
|
|
|
|
|
2015-10-18 00:49:37 +02:00
|
|
|
libXvMC = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.renderproto];
|
|
|
|
};
|
2013-06-05 17:26:51 +02:00
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
libXpm = attrs: attrs // {
|
2015-10-13 21:51:53 +02:00
|
|
|
outputs = [ "dev" "out" "bin" ]; # tiny man in $bin
|
2009-04-28 15:58:35 +02:00
|
|
|
patchPhase = "sed -i '/USE_GETTEXT_TRUE/d' sxpm/Makefile.in cxpm/Makefile.in";
|
|
|
|
};
|
|
|
|
|
2015-05-24 23:46:56 +02:00
|
|
|
libXpresent = attrs: attrs
|
|
|
|
// { buildInputs = with xorg; attrs.buildInputs ++ [ libXext libXfixes libXrandr ]; };
|
|
|
|
|
2015-10-11 21:24:05 +02:00
|
|
|
libxkbfile = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ]; # mainly to avoid propagation
|
|
|
|
};
|
|
|
|
|
2015-10-13 21:51:53 +02:00
|
|
|
libxshmfence = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ]; # mainly to avoid propagation
|
|
|
|
};
|
|
|
|
|
2016-08-03 00:27:01 +02:00
|
|
|
libpciaccess = attrs: attrs // {
|
|
|
|
meta = attrs.meta // { platforms = stdenv.lib.platforms.linux; };
|
|
|
|
};
|
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
setxkbmap = attrs: attrs // {
|
|
|
|
postInstall =
|
|
|
|
''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/share
|
2014-01-30 13:46:02 +01:00
|
|
|
ln -sfn ${xorg.xkeyboardconfig}/etc/X11 $out/share/X11
|
2009-04-28 15:58:35 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-06-05 17:26:51 +02:00
|
|
|
utilmacros = attrs: attrs // { # not needed for releases, we propagate the needed tools
|
|
|
|
propagatedBuildInputs = with args; [ automake autoconf libtool ];
|
2012-04-06 20:33:51 +02:00
|
|
|
};
|
|
|
|
|
2013-06-05 17:26:51 +02:00
|
|
|
x11perf = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.freetype args.fontconfig ];
|
2012-07-15 09:36:48 +02:00
|
|
|
};
|
|
|
|
|
2015-10-05 16:00:55 +02:00
|
|
|
xcbutil = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
};
|
|
|
|
|
2015-04-06 11:29:45 +02:00
|
|
|
xcbutilcursor = attrs: attrs // {
|
2016-04-25 13:51:01 +02:00
|
|
|
outputs = [ "dev" "out" ];
|
2016-08-02 17:06:49 +02:00
|
|
|
meta = attrs.meta // { maintainers = [ stdenv.lib.maintainers.lovek323 ]; };
|
2015-04-06 11:29:45 +02:00
|
|
|
};
|
|
|
|
|
2015-10-13 21:51:53 +02:00
|
|
|
xcbutilimage = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ]; # mainly to get rid of propagating others
|
|
|
|
};
|
|
|
|
|
2015-10-11 21:24:05 +02:00
|
|
|
xcbutilkeysyms = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ]; # mainly to get rid of propagating others
|
|
|
|
};
|
|
|
|
|
2015-10-13 21:51:53 +02:00
|
|
|
xcbutilrenderutil = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ]; # mainly to get rid of propagating others
|
|
|
|
};
|
|
|
|
|
|
|
|
xcbutilwm = attrs: attrs // {
|
|
|
|
outputs = [ "dev" "out" ]; # mainly to get rid of propagating others
|
|
|
|
};
|
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
xf86inputevdev = attrs: attrs // {
|
2016-05-23 13:00:21 +02:00
|
|
|
outputs = [ "dev" "out" ]; # to get rid of xorgserver.dev; man is tiny
|
2009-04-28 15:58:35 +02:00
|
|
|
preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c";
|
2011-02-15 16:54:57 +01:00
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
2014-11-29 11:19:00 +01:00
|
|
|
buildInputs = attrs.buildInputs ++ [ args.mtdev args.libevdev ];
|
2009-04-28 15:58:35 +02:00
|
|
|
};
|
|
|
|
|
2014-01-17 20:43:54 +01:00
|
|
|
xf86inputmouse = attrs: attrs // {
|
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
|
|
|
};
|
|
|
|
|
2013-04-18 21:33:17 +02:00
|
|
|
xf86inputjoystick = attrs: attrs // {
|
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
2012-07-16 04:55:12 +02:00
|
|
|
};
|
|
|
|
|
2015-04-06 12:15:09 +02:00
|
|
|
xf86inputlibinput = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.libinput ];
|
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
|
|
|
};
|
|
|
|
|
2009-11-04 20:53:23 +01:00
|
|
|
xf86inputsynaptics = attrs: attrs // {
|
2016-04-06 10:45:24 +02:00
|
|
|
outputs = [ "dev" "out" ]; # *.pc pulls xorgserver.dev
|
2014-10-18 11:30:12 +02:00
|
|
|
buildInputs = attrs.buildInputs ++ [args.mtdev args.libevdev];
|
2014-03-14 12:32:38 +01:00
|
|
|
installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/share/X11/xorg.conf.d";
|
2009-11-04 20:53:23 +01:00
|
|
|
};
|
|
|
|
|
2013-04-18 21:33:17 +02:00
|
|
|
xf86inputvmmouse = attrs: attrs // {
|
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=$(out)/etc"
|
|
|
|
"--with-xorg-conf-dir=$(out)/share/X11/xorg.conf.d"
|
|
|
|
"--with-udev-rules-dir=$(out)/lib/udev/rules.d"
|
|
|
|
];
|
2013-03-02 01:08:33 +01:00
|
|
|
};
|
|
|
|
|
2016-08-21 11:28:41 +02:00
|
|
|
xf86videoamdgpu = attrs: attrs // {
|
|
|
|
configureFlags = [ "--with-xorg-conf-dir=$(out)/share/X11/xorg.conf.d" ];
|
|
|
|
};
|
|
|
|
|
2014-03-14 12:32:38 +01:00
|
|
|
xf86videoati = attrs: attrs // {
|
2016-07-30 10:40:30 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${xorg.xorgserver}/include/xorg";
|
2014-03-14 12:32:38 +01:00
|
|
|
};
|
|
|
|
|
2013-11-23 12:31:23 +01:00
|
|
|
xf86videonv = attrs: attrs // {
|
2014-05-17 07:27:29 +02:00
|
|
|
patches = [( args.fetchpatch {
|
2013-11-23 12:31:23 +01:00
|
|
|
url = http://cgit.freedesktop.org/xorg/driver/xf86-video-nv/patch/?id=fc78fe98222b0204b8a2872a529763d6fe5048da;
|
2014-05-17 07:27:29 +02:00
|
|
|
sha256 = "0i2ddgqwj6cfnk8f4r73kkq3cna7hfnz7k3xj3ifx5v8mfiva6gw";
|
2013-11-23 12:31:23 +01:00
|
|
|
})];
|
|
|
|
};
|
|
|
|
|
2013-05-22 17:07:12 +02:00
|
|
|
xf86videovmware = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.mesa_drivers ]; # for libxatracker
|
|
|
|
};
|
|
|
|
|
2014-08-23 18:54:54 +02:00
|
|
|
xf86videoqxl = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.spice_protocol ];
|
2013-05-22 17:07:12 +02:00
|
|
|
};
|
|
|
|
|
2009-11-08 12:34:17 +01:00
|
|
|
xdriinfo = attrs: attrs // {
|
2013-04-18 21:33:17 +02:00
|
|
|
buildInputs = attrs.buildInputs ++ [args.mesa];
|
2009-11-08 12:34:17 +01:00
|
|
|
};
|
|
|
|
|
2011-07-26 02:04:46 +02:00
|
|
|
xvinfo = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.libXext];
|
|
|
|
};
|
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
xkbcomp = attrs: attrs // {
|
2015-07-18 13:18:08 +02:00
|
|
|
configureFlags = "--with-xkb-config-root=${xorg.xkeyboardconfig}/share/X11/xkb";
|
2009-04-28 15:58:35 +02:00
|
|
|
};
|
|
|
|
|
2013-04-18 21:33:17 +02:00
|
|
|
xkeyboardconfig = attrs: attrs // {
|
2014-02-16 11:25:49 +01:00
|
|
|
|
2013-04-18 21:33:17 +02:00
|
|
|
buildInputs = attrs.buildInputs ++ [args.intltool];
|
2014-02-16 11:25:49 +01:00
|
|
|
|
2015-10-29 13:29:20 +01:00
|
|
|
#TODO: resurrect patches for US_intl?
|
|
|
|
patches = [ ./xkeyboard-config-eo.patch ];
|
2014-03-24 10:09:40 +01:00
|
|
|
|
2014-02-16 11:25:49 +01:00
|
|
|
# 1: compatibility for X11/xkb location
|
|
|
|
# 2: I think pkgconfig/ is supposed to be in /lib/
|
|
|
|
postInstall = ''
|
|
|
|
ln -s share "$out/etc"
|
2014-08-13 02:40:57 +02:00
|
|
|
mkdir -p "$out/lib" && ln -s ../share/pkgconfig "$out/lib/"
|
2014-02-16 11:25:49 +01:00
|
|
|
'';
|
2012-10-18 18:49:22 +02:00
|
|
|
};
|
|
|
|
|
2016-05-22 22:16:12 +02:00
|
|
|
xorgserver = with xorg; attrs_passed:
|
|
|
|
# exchange attrs if fglrxCompat is set
|
|
|
|
let
|
|
|
|
attrs = if !args.fglrxCompat then attrs_passed else
|
|
|
|
with args; {
|
|
|
|
name = "xorg-server-1.17.4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://xorg/individual/xserver/xorg-server-1.17.4.tar.bz2;
|
|
|
|
sha256 = "0mv4ilpqi5hpg182mzqn766frhi6rw48aba3xfbaj4m82v0lajqc";
|
|
|
|
};
|
|
|
|
buildInputs = [pkgconfig dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ];
|
|
|
|
meta.platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
in attrs //
|
2014-08-13 02:40:57 +02:00
|
|
|
(let
|
|
|
|
version = (builtins.parseDrvName attrs.name).version;
|
|
|
|
commonBuildInputs = attrs.buildInputs ++ [ xtrans ];
|
|
|
|
commonPropagatedBuildInputs = [
|
2015-10-13 14:33:08 +02:00
|
|
|
args.zlib args.mesa args.dbus
|
2013-04-18 21:33:17 +02:00
|
|
|
xf86bigfontproto glproto xf86driproto
|
|
|
|
compositeproto scrnsaverproto resourceproto
|
|
|
|
xf86dgaproto
|
|
|
|
dmxproto /*libdmx not used*/ xf86vidmodeproto
|
2015-10-19 09:35:07 +02:00
|
|
|
recordproto libXext pixman libXfont libxshmfence args.libunwind
|
2013-04-18 21:33:17 +02:00
|
|
|
damageproto xcmiscproto bigreqsproto
|
2015-06-26 06:44:34 +02:00
|
|
|
inputproto xextproto randrproto renderproto presentproto
|
2014-12-18 07:34:20 +01:00
|
|
|
dri2proto dri3proto kbproto xineramaproto resourceproto scrnsaverproto videoproto
|
2011-02-15 15:34:26 +01:00
|
|
|
];
|
2015-09-04 14:03:18 +02:00
|
|
|
# fix_segfault: https://bugs.freedesktop.org/show_bug.cgi?id=91316
|
2015-11-18 06:10:52 +01:00
|
|
|
commonPatches = [ ./xorgserver-xkbcomp-path.patch ];
|
2014-08-13 02:40:57 +02:00
|
|
|
# XQuartz requires two compilations: the first to get X / XQuartz,
|
|
|
|
# and the second to get Xvfb, Xnest, etc.
|
|
|
|
darwinOtherX = overrideDerivation xorgserver (oldAttrs: {
|
|
|
|
configureFlags = oldAttrs.configureFlags ++ [
|
|
|
|
"--disable-xquartz"
|
|
|
|
"--enable-xorg"
|
|
|
|
"--enable-xvfb"
|
|
|
|
"--enable-xnest"
|
|
|
|
"--enable-kdrive"
|
|
|
|
];
|
|
|
|
postInstall = ":"; # prevent infinite recursion
|
|
|
|
});
|
|
|
|
in
|
|
|
|
if (!isDarwin)
|
|
|
|
then {
|
2015-10-13 21:51:53 +02:00
|
|
|
outputs = [ "dev" "out" ];
|
2015-04-11 11:25:02 +02:00
|
|
|
buildInputs = [ makeWrapper ] ++ commonBuildInputs;
|
2016-07-30 10:40:30 +02:00
|
|
|
propagatedBuildInputs = [ libpciaccess args.epoxy ] ++ commonPropagatedBuildInputs ++ lib.optionals stdenv.isLinux [
|
2014-08-13 02:40:57 +02:00
|
|
|
args.udev
|
|
|
|
];
|
|
|
|
patches = commonPatches;
|
|
|
|
configureFlags = [
|
2015-03-02 17:04:27 +01:00
|
|
|
"--enable-kdrive" # not built by default
|
2015-04-11 11:25:02 +02:00
|
|
|
"--enable-xephyr"
|
2014-08-13 02:40:57 +02:00
|
|
|
"--enable-xcsecurity" # enable SECURITY extension
|
|
|
|
"--with-default-font-path=" # there were only paths containing "${prefix}",
|
|
|
|
# and there are no fonts in this package anyway
|
2016-07-30 10:40:30 +02:00
|
|
|
"--enable-glamor"
|
2014-08-13 02:40:57 +02:00
|
|
|
];
|
|
|
|
postInstall = ''
|
|
|
|
rm -fr $out/share/X11/xkb/compiled
|
|
|
|
ln -s /var/tmp $out/share/X11/xkb/compiled
|
2015-04-11 11:25:02 +02:00
|
|
|
wrapProgram $out/bin/Xephyr \
|
|
|
|
--set XKB_BINDIR "${xorg.xkbcomp}/bin" \
|
|
|
|
--add-flags "-xkbdir ${xorg.xkeyboardconfig}/share/X11/xkb"
|
2016-01-17 21:14:49 +01:00
|
|
|
wrapProgram $out/bin/Xvfb \
|
|
|
|
--set XKB_BINDIR "${xorg.xkbcomp}/bin" \
|
|
|
|
--set XORG_DRI_DRIVER_PATH ${args.mesa}/lib/dri \
|
|
|
|
--add-flags "-xkbdir ${xorg.xkeyboardconfig}/share/X11/xkb"
|
2015-10-26 10:59:20 +01:00
|
|
|
( # assert() keeps runtime reference xorgserver-dev in xf86-video-intel and others
|
|
|
|
cd "$dev"
|
|
|
|
for f in include/xorg/*.h; do
|
|
|
|
sed "1i#line 1 \"${attrs.name}/$f\"" -i "$f"
|
|
|
|
done
|
|
|
|
)
|
2014-08-13 02:40:57 +02:00
|
|
|
'';
|
|
|
|
passthru.version = version; # needed by virtualbox guest additions
|
|
|
|
} else {
|
2015-09-23 01:26:48 +02:00
|
|
|
buildInputs = commonBuildInputs ++ [
|
|
|
|
args.bootstrap_cmds args.automake args.autoconf
|
2015-10-27 02:37:05 +01:00
|
|
|
args.apple_sdk.libs.Xplugin
|
|
|
|
args.apple_sdk.frameworks.Carbon
|
|
|
|
args.apple_sdk.frameworks.Cocoa
|
2015-09-23 01:26:48 +02:00
|
|
|
];
|
2014-08-13 02:40:57 +02:00
|
|
|
propagatedBuildInputs = commonPropagatedBuildInputs ++ [
|
|
|
|
libAppleWM applewmproto
|
|
|
|
];
|
2015-06-26 06:44:34 +02:00
|
|
|
# Patches can be pulled from the server-*-apple branches of:
|
|
|
|
# http://cgit.freedesktop.org/~jeremyhu/xserver/
|
2014-08-13 02:40:57 +02:00
|
|
|
patches = commonPatches ++ [
|
2015-06-26 06:44:34 +02:00
|
|
|
./darwin/0002-sdksyms.sh-Use-CPPFLAGS-not-CFLAGS.patch
|
|
|
|
./darwin/0004-Use-old-miTrapezoids-and-miTriangles-routines.patch
|
|
|
|
./darwin/0006-fb-Revert-fb-changes-that-broke-XQuartz.patch
|
2014-08-13 02:40:57 +02:00
|
|
|
./darwin/private-extern.patch
|
|
|
|
./darwin/bundle_main.patch
|
|
|
|
./darwin/stub.patch
|
|
|
|
];
|
|
|
|
configureFlags = [
|
|
|
|
# note: --enable-xquartz is auto
|
|
|
|
"CPPFLAGS=-I${./darwin/dri}"
|
|
|
|
"--with-default-font-path="
|
|
|
|
"--with-apple-application-name=XQuartz"
|
|
|
|
"--with-apple-applications-dir=\${out}/Applications"
|
|
|
|
"--with-bundle-id-prefix=org.nixos.xquartz"
|
|
|
|
"--with-sha1=CommonCrypto"
|
|
|
|
];
|
|
|
|
preConfigure = ''
|
|
|
|
ensureDir $out/Applications
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Wno-error"
|
2015-10-27 02:37:05 +01:00
|
|
|
substituteInPlace hw/xquartz/pbproxy/Makefile.in --replace -F/System -F${args.apple_sdk.frameworks.ApplicationServices}
|
2014-08-13 02:40:57 +02:00
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
rm -fr $out/share/X11/xkb/compiled
|
|
|
|
ln -s /var/tmp $out/share/X11/xkb/compiled
|
|
|
|
|
|
|
|
cp -rT ${darwinOtherX}/bin $out/bin
|
|
|
|
rm -f $out/bin/X
|
|
|
|
ln -s Xquartz $out/bin/X
|
|
|
|
|
|
|
|
cp ${darwinOtherX}/share/man -rT $out/share/man
|
|
|
|
'' ;
|
|
|
|
passthru.version = version;
|
|
|
|
});
|
2009-10-02 20:03:23 +02:00
|
|
|
|
2010-07-17 00:04:56 +02:00
|
|
|
lndir = attrs: attrs // {
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace lndir.c \
|
|
|
|
--replace 'n_dirs--;' ""
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-03-17 16:51:13 +01:00
|
|
|
twm = attrs: attrs // {
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [args.bison args.flex];
|
2011-03-17 16:51:13 +01:00
|
|
|
};
|
|
|
|
|
2013-04-18 21:33:17 +02:00
|
|
|
xcursorthemes = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.xcursorgen];
|
|
|
|
configureFlags = "--with-cursordir=$(out)/share/icons";
|
|
|
|
};
|
|
|
|
|
2012-10-14 20:28:00 +02:00
|
|
|
xinput = attrs: attrs // {
|
2013-06-05 17:26:51 +02:00
|
|
|
propagatedBuildInputs = [xorg.libXfixes];
|
2012-10-14 20:28:00 +02:00
|
|
|
};
|
2012-10-19 11:50:02 +02:00
|
|
|
|
2012-11-22 02:26:11 +01:00
|
|
|
xinit = attrs: attrs // {
|
2014-08-13 02:40:57 +02:00
|
|
|
stdenv = if isDarwin then args.clangStdenv else stdenv;
|
2015-02-05 11:09:14 +01:00
|
|
|
buildInputs = attrs.buildInputs ++ lib.optional isDarwin args.bootstrap_cmds;
|
2014-08-13 02:40:57 +02:00
|
|
|
configureFlags = [
|
2015-10-18 00:53:13 +02:00
|
|
|
"--with-xserver=${xorg.xorgserver.out}/bin/X"
|
2014-08-13 02:40:57 +02:00
|
|
|
] ++ lib.optionals isDarwin [
|
|
|
|
"--with-bundle-id-prefix=org.nixos.xquartz"
|
|
|
|
"--with-launchdaemons-dir=\${out}/LaunchDaemons"
|
|
|
|
"--with-launchagents-dir=\${out}/LaunchAgents"
|
|
|
|
];
|
2015-02-05 00:14:36 +01:00
|
|
|
propagatedBuildInputs = [ xorg.xauth ]
|
|
|
|
++ lib.optionals isDarwin [ xorg.libX11 xorg.xproto ];
|
2012-11-22 02:26:11 +01:00
|
|
|
prePatch = ''
|
|
|
|
sed -i 's|^defaultserverargs="|&-logfile \"$HOME/.xorg.log\"|p' startx.cpp
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-06-05 17:26:51 +02:00
|
|
|
xf86videointel = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.libXfixes];
|
2015-07-22 22:12:25 +02:00
|
|
|
nativeBuildInputs = [args.autoreconfHook xorg.utilmacros];
|
2013-06-05 17:26:51 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 10:25:12 +02:00
|
|
|
xf86videoxgi = attrs: attrs // {
|
|
|
|
patches = [
|
|
|
|
# fixes invalid open mode
|
|
|
|
# https://cgit.freedesktop.org/xorg/driver/xf86-video-xgi/commit/?id=bd94c475035739b42294477cff108e0c5f15ef67
|
|
|
|
(args.fetchpatch {
|
|
|
|
url = "https://cgit.freedesktop.org/xorg/driver/xf86-video-xgi/patch/?id=bd94c475035739b42294477cff108e0c5f15ef67";
|
|
|
|
sha256 = "0myfry07655adhrpypa9rqigd6rfx57pqagcwibxw7ab3wjay9f6";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2012-10-19 11:50:02 +02:00
|
|
|
xwd = attrs: attrs // {
|
2014-03-14 12:32:38 +01:00
|
|
|
buildInputs = with xorg; attrs.buildInputs ++ [libXt libxkbfile];
|
2012-10-19 11:50:02 +02:00
|
|
|
};
|
2015-07-27 00:25:53 +02:00
|
|
|
|
|
|
|
kbproto = attrs: attrs // {
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
xextproto = attrs: attrs // {
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
xproto = attrs: attrs // {
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
2015-08-29 00:06:06 +02:00
|
|
|
xrdb = attrs: attrs // {
|
|
|
|
configureFlags = "--with-cpp=${args.mcpp}/bin/mcpp";
|
|
|
|
};
|
|
|
|
|
2016-01-26 02:04:05 +01:00
|
|
|
sessreg = attrs: attrs // {
|
|
|
|
preBuild = "sed -i 's|gcc -E|gcc -E -P|' man/Makefile";
|
|
|
|
};
|
|
|
|
|
2009-04-28 15:58:35 +02:00
|
|
|
}
|