2013-06-14 16:53:36 +04:00
|
|
|
{ args, xorg }:
|
|
|
|
|
2009-11-21 17:49:25 +03:00
|
|
|
let
|
2015-04-11 12:25:02 +03:00
|
|
|
inherit (args) stdenv makeWrapper;
|
2014-08-13 04:40:57 +04:00
|
|
|
inherit (stdenv) lib isDarwin;
|
|
|
|
inherit (lib) overrideDerivation;
|
|
|
|
|
2013-06-14 16:53:36 +04:00
|
|
|
setMalloc0ReturnsNullCrossCompiling = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="$configureFlags --enable-malloc0returnsnull";
|
|
|
|
fi
|
|
|
|
'';
|
2013-06-05 19:26:51 +04: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 17:49:25 +03:00
|
|
|
in
|
2009-04-28 17:58:35 +04:00
|
|
|
{
|
2013-04-18 23:33:17 +04:00
|
|
|
encodings = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ xorg.mkfontscale ];
|
|
|
|
};
|
2009-04-28 17:58:35 +04:00
|
|
|
|
2012-10-15 20:28:09 +04:00
|
|
|
fontcursormisc = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ xorg.mkfontscale ];
|
|
|
|
};
|
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
fontmiscmisc = attrs: attrs // {
|
|
|
|
postInstall =
|
|
|
|
''
|
2009-11-06 18:16:47 +03: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 22:03:23 +04:00
|
|
|
'';
|
2009-04-28 17:58:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
imake = attrs: attrs // {
|
|
|
|
inherit (xorg) xorgcffiles;
|
|
|
|
x11BuildHook = ./imake.sh;
|
2015-08-21 02:12:27 +03:00
|
|
|
patches = [./imake.patch ./imake-cc-wrapper-uberhack.patch];
|
2015-02-04 13:00:50 +03: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 17:58:35 +04:00
|
|
|
};
|
|
|
|
|
2016-07-20 13:33:06 +03:00
|
|
|
intelgputools = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.cairo args.libunwind ];
|
|
|
|
};
|
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
mkfontdir = attrs: attrs // {
|
2012-10-15 21:06:59 +04:00
|
|
|
preBuild = "substituteInPlace mkfontdir.in --replace @bindir@ ${xorg.mkfontscale}/bin";
|
2009-04-28 17:58:35 +04:00
|
|
|
};
|
2009-11-21 13:11:44 +03:00
|
|
|
|
2015-03-11 18:53:24 +03: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 13:11:44 +03:00
|
|
|
libxcb = attrs : attrs // {
|
2014-08-30 10:27:43 +04:00
|
|
|
nativeBuildInputs = [ args.python ];
|
2015-09-13 09:35:48 +03:00
|
|
|
configureFlags = "--enable-xkb --enable-xinput";
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2009-11-21 13:44:22 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
xcbproto = attrs : attrs // {
|
2012-12-28 22:20:09 +04:00
|
|
|
nativeBuildInputs = [ args.python ];
|
2009-11-21 13:11:44 +03:00
|
|
|
};
|
2009-04-28 17:58:35 +04:00
|
|
|
|
2009-11-21 17:49:25 +03:00
|
|
|
libX11 = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2014-08-22 03:40:14 +04:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling + ''
|
|
|
|
sed 's,^as_dummy.*,as_dummy="\$PATH",' -i configure
|
|
|
|
'';
|
2011-02-09 18:17:15 +03:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Remove useless DocBook XML files.
|
|
|
|
rm -rf $out/share/doc
|
|
|
|
'';
|
2014-08-18 00:17:13 +04:00
|
|
|
CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -";
|
2009-11-21 17:49:25 +03:00
|
|
|
};
|
|
|
|
|
2015-09-18 00:42:54 +03:00
|
|
|
libAppleWM = attrs: attrs // {
|
2015-10-27 03:13:23 +03: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 17:49:25 +03:00
|
|
|
};
|
|
|
|
|
2014-08-27 03:14:09 +04:00
|
|
|
libXau = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
libXdmcp = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
2014-06-09 21:47:31 +04:00
|
|
|
libXfont = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-06-09 21:47:31 +04:00
|
|
|
propagatedBuildInputs = [ args.freetype ]; # propagate link reqs. like bzip2
|
2014-08-13 04:40:57 +04:00
|
|
|
# prevents "misaligned_stack_error_entering_dyld_stub_binder"
|
|
|
|
configureFlags = lib.optionals isDarwin [
|
|
|
|
"CFLAGS=-O0"
|
|
|
|
];
|
2014-06-09 21:47:31 +04:00
|
|
|
};
|
|
|
|
|
2009-11-21 17:49:25 +03:00
|
|
|
libXxf86vm = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2009-11-21 17:49:25 +03:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
|
|
|
};
|
|
|
|
|
2011-02-09 18:09:29 +03:00
|
|
|
# Propagate some build inputs because of header file dependencies.
|
2011-02-14 13:04:37 +03:00
|
|
|
# Note: most of these are in Requires.private, so maybe builder.sh
|
|
|
|
# should propagate them automatically.
|
2009-11-21 17:49:25 +03:00
|
|
|
libXt = attrs: attrs // {
|
2014-08-24 10:15:23 +04:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling + ''
|
|
|
|
sed 's,^as_dummy.*,as_dummy="\$PATH",' -i configure
|
|
|
|
'';
|
2011-02-08 20:39:28 +03:00
|
|
|
propagatedBuildInputs = [ xorg.libSM ];
|
2014-08-24 10:15:23 +04:00
|
|
|
CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -";
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2009-11-21 17:49:25 +03:00
|
|
|
};
|
|
|
|
|
2013-07-24 07:30:31 +04: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 18:09:29 +03:00
|
|
|
compositeproto = attrs: attrs // {
|
|
|
|
propagatedBuildInputs = [ xorg.fixesproto ];
|
|
|
|
};
|
2012-09-27 20:38:48 +04:00
|
|
|
|
2015-10-13 15:50:31 +03:00
|
|
|
libICE = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-10-13 15:50:31 +03:00
|
|
|
};
|
|
|
|
|
2011-02-09 18:09:29 +03:00
|
|
|
libXcomposite = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2011-02-09 18:09:29 +03:00
|
|
|
propagatedBuildInputs = [ xorg.libXfixes ];
|
|
|
|
};
|
2012-09-27 20:38:48 +04:00
|
|
|
|
2011-02-14 13:04:37 +03:00
|
|
|
libXaw = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2011-02-14 13:04:37 +03:00
|
|
|
propagatedBuildInputs = [ xorg.libXmu ];
|
|
|
|
};
|
2012-09-27 20:38:48 +04:00
|
|
|
|
2014-08-27 03:14:09 +04:00
|
|
|
libXcursor = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
libXdamage = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
2009-11-21 17:49:25 +03:00
|
|
|
libXft = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2012-09-27 20:38:48 +04:00
|
|
|
propagatedBuildInputs = [ xorg.libXrender args.freetype args.fontconfig ];
|
2009-11-21 17:49:25 +03:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
2014-06-09 21:47:31 +04:00
|
|
|
# the include files need ft2build.h, and Requires.private isn't enough for us
|
|
|
|
postInstall = ''
|
2015-08-20 16:10:24 +03:00
|
|
|
sed "/^Requires:/s/$/, freetype2/" -i "$dev/lib/pkgconfig/xft.pc"
|
2014-06-09 21:47:31 +04:00
|
|
|
'';
|
2009-11-21 17:49:25 +03:00
|
|
|
};
|
|
|
|
|
2009-10-29 20:56:10 +03:00
|
|
|
libXext = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2013-06-05 19:26:51 +04:00
|
|
|
propagatedBuildInputs = [ xorg.xproto xorg.libXau ];
|
2009-11-21 17:49:25 +03:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
2009-10-29 20:56:10 +03:00
|
|
|
};
|
|
|
|
|
2014-08-27 03:14:09 +04:00
|
|
|
libXfixes = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
libXi = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
libXinerama = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
};
|
|
|
|
|
2015-08-21 21:36:06 +03:00
|
|
|
libXmu = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-08-21 21:36:06 +03:00
|
|
|
buildFlags = ''BITMAP_DEFINES=-DBITMAPDIR=\"/no-such-path\"'';
|
|
|
|
};
|
|
|
|
|
2014-08-27 03:14:09 +04:00
|
|
|
libXrandr = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
|
|
|
propagatedBuildInputs = [xorg.libXrender];
|
|
|
|
};
|
|
|
|
|
2015-10-13 15:50:31 +03:00
|
|
|
libSM = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-10-13 15:50:31 +03:00
|
|
|
propagatedBuildInputs = [ xorg.libICE ];
|
|
|
|
};
|
2013-06-05 19:26:51 +04:00
|
|
|
|
2014-08-27 03:14:09 +04:00
|
|
|
libXrender = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2014-08-27 03:14:09 +04:00
|
|
|
preConfigure = setMalloc0ReturnsNullCrossCompiling;
|
|
|
|
};
|
2013-06-05 19:26:51 +04:00
|
|
|
|
2015-10-13 22:51:53 +03:00
|
|
|
libXres = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2015-10-13 22:51:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
libXv = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2015-10-13 22:51:53 +03:00
|
|
|
};
|
|
|
|
|
2015-10-18 01:49:37 +03:00
|
|
|
libXvMC = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2015-10-18 01:49:37 +03:00
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.renderproto];
|
|
|
|
};
|
2013-06-05 19:26:51 +04:00
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
libXpm = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "bin" "dev" "out" ]; # tiny man in $bin
|
2009-04-28 17:58:35 +04:00
|
|
|
patchPhase = "sed -i '/USE_GETTEXT_TRUE/d' sxpm/Makefile.in cxpm/Makefile.in";
|
|
|
|
};
|
|
|
|
|
2015-05-25 00:46:56 +03:00
|
|
|
libXpresent = attrs: attrs
|
|
|
|
// { buildInputs = with xorg; attrs.buildInputs ++ [ libXext libXfixes libXrandr ]; };
|
|
|
|
|
2015-10-11 22:24:05 +03:00
|
|
|
libxkbfile = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # mainly to avoid propagation
|
2015-10-11 22:24:05 +03:00
|
|
|
};
|
|
|
|
|
2015-10-13 22:51:53 +03:00
|
|
|
libxshmfence = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # mainly to avoid propagation
|
2015-10-13 22:51:53 +03:00
|
|
|
};
|
|
|
|
|
2016-08-03 01:27:01 +03:00
|
|
|
libpciaccess = attrs: attrs // {
|
|
|
|
meta = attrs.meta // { platforms = stdenv.lib.platforms.linux; };
|
|
|
|
};
|
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
setxkbmap = attrs: attrs // {
|
|
|
|
postInstall =
|
|
|
|
''
|
2012-01-19 00:16:00 +04:00
|
|
|
mkdir -p $out/share
|
2014-01-30 16:46:02 +04:00
|
|
|
ln -sfn ${xorg.xkeyboardconfig}/etc/X11 $out/share/X11
|
2009-04-28 17:58:35 +04:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-06-05 19:26:51 +04:00
|
|
|
utilmacros = attrs: attrs // { # not needed for releases, we propagate the needed tools
|
|
|
|
propagatedBuildInputs = with args; [ automake autoconf libtool ];
|
2012-04-06 22:33:51 +04:00
|
|
|
};
|
|
|
|
|
2013-06-05 19:26:51 +04:00
|
|
|
x11perf = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.freetype args.fontconfig ];
|
2012-07-15 11:36:48 +04:00
|
|
|
};
|
|
|
|
|
2015-10-05 17:00:55 +03:00
|
|
|
xcbutil = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-05 17:00:55 +03:00
|
|
|
};
|
|
|
|
|
2015-04-06 12:29:45 +03:00
|
|
|
xcbutilcursor = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-08-02 18:06:49 +03:00
|
|
|
meta = attrs.meta // { maintainers = [ stdenv.lib.maintainers.lovek323 ]; };
|
2015-04-06 12:29:45 +03:00
|
|
|
};
|
|
|
|
|
2015-10-13 22:51:53 +03:00
|
|
|
xcbutilimage = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # mainly to get rid of propagating others
|
2015-10-13 22:51:53 +03:00
|
|
|
};
|
|
|
|
|
2015-10-11 22:24:05 +03:00
|
|
|
xcbutilkeysyms = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # mainly to get rid of propagating others
|
2015-10-11 22:24:05 +03:00
|
|
|
};
|
|
|
|
|
2015-10-13 22:51:53 +03:00
|
|
|
xcbutilrenderutil = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # mainly to get rid of propagating others
|
2015-10-13 22:51:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
xcbutilwm = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # mainly to get rid of propagating others
|
2015-10-13 22:51:53 +03:00
|
|
|
};
|
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
xf86inputevdev = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # to get rid of xorgserver.dev; man is tiny
|
2009-04-28 17:58:35 +04:00
|
|
|
preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c";
|
2011-02-15 18:54:57 +03:00
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
2014-11-29 13:19:00 +03:00
|
|
|
buildInputs = attrs.buildInputs ++ [ args.mtdev args.libevdev ];
|
2009-04-28 17:58:35 +04:00
|
|
|
};
|
|
|
|
|
2014-01-17 23:43:54 +04:00
|
|
|
xf86inputmouse = attrs: attrs // {
|
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
|
|
|
};
|
|
|
|
|
2013-04-18 23:33:17 +04:00
|
|
|
xf86inputjoystick = attrs: attrs // {
|
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
2012-07-16 06:55:12 +04:00
|
|
|
};
|
|
|
|
|
2015-04-06 13:15:09 +03:00
|
|
|
xf86inputlibinput = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.libinput ];
|
|
|
|
installFlags = "sdkdir=\${out}/include/xorg";
|
|
|
|
};
|
|
|
|
|
2009-11-04 22:53:23 +03:00
|
|
|
xf86inputsynaptics = attrs: attrs // {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ]; # *.pc pulls xorgserver.dev
|
2014-10-18 13:30:12 +04:00
|
|
|
buildInputs = attrs.buildInputs ++ [args.mtdev args.libevdev];
|
2014-03-14 15:32:38 +04:00
|
|
|
installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/share/X11/xorg.conf.d";
|
2009-11-04 22:53:23 +03:00
|
|
|
};
|
|
|
|
|
2013-04-18 23:33:17 +04: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 04:08:33 +04:00
|
|
|
};
|
|
|
|
|
2016-08-21 12:28:41 +03:00
|
|
|
xf86videoamdgpu = attrs: attrs // {
|
|
|
|
configureFlags = [ "--with-xorg-conf-dir=$(out)/share/X11/xorg.conf.d" ];
|
|
|
|
};
|
|
|
|
|
2014-03-14 15:32:38 +04:00
|
|
|
xf86videoati = attrs: attrs // {
|
2016-07-30 11:40:30 +03:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${xorg.xorgserver}/include/xorg";
|
2014-03-14 15:32:38 +04:00
|
|
|
};
|
|
|
|
|
2013-11-23 15:31:23 +04:00
|
|
|
xf86videonv = attrs: attrs // {
|
2014-05-17 09:27:29 +04:00
|
|
|
patches = [( args.fetchpatch {
|
2013-11-23 15:31:23 +04:00
|
|
|
url = http://cgit.freedesktop.org/xorg/driver/xf86-video-nv/patch/?id=fc78fe98222b0204b8a2872a529763d6fe5048da;
|
2014-05-17 09:27:29 +04:00
|
|
|
sha256 = "0i2ddgqwj6cfnk8f4r73kkq3cna7hfnz7k3xj3ifx5v8mfiva6gw";
|
2013-11-23 15:31:23 +04:00
|
|
|
})];
|
|
|
|
};
|
|
|
|
|
2013-05-22 19:07:12 +04:00
|
|
|
xf86videovmware = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.mesa_drivers ]; # for libxatracker
|
|
|
|
};
|
|
|
|
|
2014-08-23 20:54:54 +04:00
|
|
|
xf86videoqxl = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [ args.spice_protocol ];
|
2013-05-22 19:07:12 +04:00
|
|
|
};
|
|
|
|
|
2009-11-08 14:34:17 +03:00
|
|
|
xdriinfo = attrs: attrs // {
|
2013-04-18 23:33:17 +04:00
|
|
|
buildInputs = attrs.buildInputs ++ [args.mesa];
|
2009-11-08 14:34:17 +03:00
|
|
|
};
|
|
|
|
|
2011-07-26 04:04:46 +04:00
|
|
|
xvinfo = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.libXext];
|
|
|
|
};
|
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
xkbcomp = attrs: attrs // {
|
2015-07-18 14:18:08 +03:00
|
|
|
configureFlags = "--with-xkb-config-root=${xorg.xkeyboardconfig}/share/X11/xkb";
|
2009-04-28 17:58:35 +04:00
|
|
|
};
|
|
|
|
|
2013-04-18 23:33:17 +04:00
|
|
|
xkeyboardconfig = attrs: attrs // {
|
2014-02-16 14:25:49 +04:00
|
|
|
|
2013-04-18 23:33:17 +04:00
|
|
|
buildInputs = attrs.buildInputs ++ [args.intltool];
|
2014-02-16 14:25:49 +04:00
|
|
|
|
2015-10-29 15:29:20 +03:00
|
|
|
#TODO: resurrect patches for US_intl?
|
|
|
|
patches = [ ./xkeyboard-config-eo.patch ];
|
2014-03-24 13:09:40 +04:00
|
|
|
|
2014-02-16 14:25:49 +04: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 04:40:57 +04:00
|
|
|
mkdir -p "$out/lib" && ln -s ../share/pkgconfig "$out/lib/"
|
2014-02-16 14:25:49 +04:00
|
|
|
'';
|
2012-10-18 20:49:22 +04:00
|
|
|
};
|
|
|
|
|
2016-05-22 23:16:12 +03: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 04:40:57 +04:00
|
|
|
(let
|
|
|
|
version = (builtins.parseDrvName attrs.name).version;
|
|
|
|
commonBuildInputs = attrs.buildInputs ++ [ xtrans ];
|
|
|
|
commonPropagatedBuildInputs = [
|
2015-10-13 15:33:08 +03:00
|
|
|
args.zlib args.mesa args.dbus
|
2013-04-18 23:33:17 +04:00
|
|
|
xf86bigfontproto glproto xf86driproto
|
|
|
|
compositeproto scrnsaverproto resourceproto
|
|
|
|
xf86dgaproto
|
|
|
|
dmxproto /*libdmx not used*/ xf86vidmodeproto
|
2015-10-19 10:35:07 +03:00
|
|
|
recordproto libXext pixman libXfont libxshmfence args.libunwind
|
2013-04-18 23:33:17 +04:00
|
|
|
damageproto xcmiscproto bigreqsproto
|
2015-06-26 07:44:34 +03:00
|
|
|
inputproto xextproto randrproto renderproto presentproto
|
2014-12-18 09:34:20 +03:00
|
|
|
dri2proto dri3proto kbproto xineramaproto resourceproto scrnsaverproto videoproto
|
2011-02-15 17:34:26 +03:00
|
|
|
];
|
2015-09-04 15:03:18 +03:00
|
|
|
# fix_segfault: https://bugs.freedesktop.org/show_bug.cgi?id=91316
|
2015-11-18 08:10:52 +03:00
|
|
|
commonPatches = [ ./xorgserver-xkbcomp-path.patch ];
|
2014-08-13 04:40:57 +04: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 {
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-04-11 12:25:02 +03:00
|
|
|
buildInputs = [ makeWrapper ] ++ commonBuildInputs;
|
2016-07-30 11:40:30 +03:00
|
|
|
propagatedBuildInputs = [ libpciaccess args.epoxy ] ++ commonPropagatedBuildInputs ++ lib.optionals stdenv.isLinux [
|
2014-08-13 04:40:57 +04:00
|
|
|
args.udev
|
|
|
|
];
|
|
|
|
patches = commonPatches;
|
|
|
|
configureFlags = [
|
2015-03-02 19:04:27 +03:00
|
|
|
"--enable-kdrive" # not built by default
|
2015-04-11 12:25:02 +03:00
|
|
|
"--enable-xephyr"
|
2014-08-13 04:40:57 +04: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 11:40:30 +03:00
|
|
|
"--enable-glamor"
|
2014-08-13 04:40:57 +04:00
|
|
|
];
|
|
|
|
postInstall = ''
|
|
|
|
rm -fr $out/share/X11/xkb/compiled
|
|
|
|
ln -s /var/tmp $out/share/X11/xkb/compiled
|
2015-04-11 12:25:02 +03:00
|
|
|
wrapProgram $out/bin/Xephyr \
|
|
|
|
--set XKB_BINDIR "${xorg.xkbcomp}/bin" \
|
|
|
|
--add-flags "-xkbdir ${xorg.xkeyboardconfig}/share/X11/xkb"
|
2016-01-17 23:14:49 +03: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 12:59:20 +03: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 04:40:57 +04:00
|
|
|
'';
|
|
|
|
passthru.version = version; # needed by virtualbox guest additions
|
|
|
|
} else {
|
2015-09-23 02:26:48 +03:00
|
|
|
buildInputs = commonBuildInputs ++ [
|
|
|
|
args.bootstrap_cmds args.automake args.autoconf
|
2015-10-27 04:37:05 +03:00
|
|
|
args.apple_sdk.libs.Xplugin
|
|
|
|
args.apple_sdk.frameworks.Carbon
|
|
|
|
args.apple_sdk.frameworks.Cocoa
|
2015-09-23 02:26:48 +03:00
|
|
|
];
|
2014-08-13 04:40:57 +04:00
|
|
|
propagatedBuildInputs = commonPropagatedBuildInputs ++ [
|
|
|
|
libAppleWM applewmproto
|
|
|
|
];
|
2015-06-26 07:44:34 +03:00
|
|
|
# Patches can be pulled from the server-*-apple branches of:
|
|
|
|
# http://cgit.freedesktop.org/~jeremyhu/xserver/
|
2014-08-13 04:40:57 +04:00
|
|
|
patches = commonPatches ++ [
|
2015-06-26 07:44:34 +03: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 04:40:57 +04: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 04:37:05 +03:00
|
|
|
substituteInPlace hw/xquartz/pbproxy/Makefile.in --replace -F/System -F${args.apple_sdk.frameworks.ApplicationServices}
|
2014-08-13 04:40:57 +04: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 22:03:23 +04:00
|
|
|
|
2010-07-17 02:04:56 +04:00
|
|
|
lndir = attrs: attrs // {
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace lndir.c \
|
|
|
|
--replace 'n_dirs--;' ""
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-03-17 18:51:13 +03:00
|
|
|
twm = attrs: attrs // {
|
2012-12-28 22:20:09 +04:00
|
|
|
nativeBuildInputs = [args.bison args.flex];
|
2011-03-17 18:51:13 +03:00
|
|
|
};
|
|
|
|
|
2013-04-18 23:33:17 +04:00
|
|
|
xcursorthemes = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.xcursorgen];
|
|
|
|
configureFlags = "--with-cursordir=$(out)/share/icons";
|
|
|
|
};
|
|
|
|
|
2012-10-14 22:28:00 +04:00
|
|
|
xinput = attrs: attrs // {
|
2013-06-05 19:26:51 +04:00
|
|
|
propagatedBuildInputs = [xorg.libXfixes];
|
2012-10-14 22:28:00 +04:00
|
|
|
};
|
2012-10-19 13:50:02 +04:00
|
|
|
|
2012-11-22 05:26:11 +04:00
|
|
|
xinit = attrs: attrs // {
|
2014-08-13 04:40:57 +04:00
|
|
|
stdenv = if isDarwin then args.clangStdenv else stdenv;
|
2015-02-05 13:09:14 +03:00
|
|
|
buildInputs = attrs.buildInputs ++ lib.optional isDarwin args.bootstrap_cmds;
|
2014-08-13 04:40:57 +04:00
|
|
|
configureFlags = [
|
2015-10-18 01:53:13 +03:00
|
|
|
"--with-xserver=${xorg.xorgserver.out}/bin/X"
|
2014-08-13 04:40:57 +04:00
|
|
|
] ++ lib.optionals isDarwin [
|
|
|
|
"--with-bundle-id-prefix=org.nixos.xquartz"
|
|
|
|
"--with-launchdaemons-dir=\${out}/LaunchDaemons"
|
|
|
|
"--with-launchagents-dir=\${out}/LaunchAgents"
|
|
|
|
];
|
2015-02-05 02:14:36 +03:00
|
|
|
propagatedBuildInputs = [ xorg.xauth ]
|
|
|
|
++ lib.optionals isDarwin [ xorg.libX11 xorg.xproto ];
|
2012-11-22 05:26:11 +04:00
|
|
|
prePatch = ''
|
|
|
|
sed -i 's|^defaultserverargs="|&-logfile \"$HOME/.xorg.log\"|p' startx.cpp
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-06-05 19:26:51 +04:00
|
|
|
xf86videointel = attrs: attrs // {
|
|
|
|
buildInputs = attrs.buildInputs ++ [xorg.libXfixes];
|
2015-07-22 23:12:25 +03:00
|
|
|
nativeBuildInputs = [args.autoreconfHook xorg.utilmacros];
|
2013-06-05 19:26:51 +04:00
|
|
|
};
|
|
|
|
|
2012-10-19 13:50:02 +04:00
|
|
|
xwd = attrs: attrs // {
|
2014-03-14 15:32:38 +04:00
|
|
|
buildInputs = with xorg; attrs.buildInputs ++ [libXt libxkbfile];
|
2012-10-19 13:50:02 +04:00
|
|
|
};
|
2015-07-27 01:25:53 +03:00
|
|
|
|
|
|
|
kbproto = attrs: attrs // {
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
xextproto = attrs: attrs // {
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
xproto = attrs: attrs // {
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
};
|
|
|
|
|
2015-08-29 01:06:06 +03:00
|
|
|
xrdb = attrs: attrs // {
|
|
|
|
configureFlags = "--with-cpp=${args.mcpp}/bin/mcpp";
|
|
|
|
};
|
|
|
|
|
2016-01-26 04:04:05 +03:00
|
|
|
sessreg = attrs: attrs // {
|
|
|
|
preBuild = "sed -i 's|gcc -E|gcc -E -P|' man/Makefile";
|
|
|
|
};
|
|
|
|
|
2009-04-28 17:58:35 +04:00
|
|
|
}
|