2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchgit, autoreconfHook, xorgproto, libX11, libXext
|
2021-01-19 06:50:56 +00:00
|
|
|
, pixman, pkg-config, utilmacros, xorgserver
|
2012-07-16 20:15:54 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-06-01 13:33:41 +01:00
|
|
|
name = "xf86-video-nested-2017-06-12";
|
2012-07-16 20:15:54 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "git://anongit.freedesktop.org/xorg/driver/xf86-video-nested";
|
2019-06-01 13:33:41 +01:00
|
|
|
rev = "6a48b385c41ea89354d0b2ee7f4649a1d1d9ec70";
|
|
|
|
sha256 = "133rd2kvr2q2wmwpx82bb93qbi8wm8qp1vlmbhgc7aslz0j4cqqv";
|
2012-07-16 20:15:54 +01:00
|
|
|
};
|
|
|
|
|
2012-11-17 19:02:48 +00:00
|
|
|
buildInputs =
|
2018-12-31 03:40:47 +00:00
|
|
|
[ autoreconfHook xorgproto libX11 libXext pixman
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config utilmacros xorgserver
|
2012-07-16 20:15:54 +01:00
|
|
|
];
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "fortify" ];
|
2012-11-17 19:02:48 +00:00
|
|
|
|
2016-02-24 15:43:35 +00:00
|
|
|
CFLAGS = "-I${pixman}/include/pixman-1";
|
2012-07-16 20:15:54 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/driver/xf86-video-nested";
|
2013-03-03 18:40:17 +00:00
|
|
|
description = "A driver to run Xorg on top of Xorg or something else";
|
2020-06-30 20:31:24 +01:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
2012-07-16 20:15:54 +01:00
|
|
|
};
|
|
|
|
}
|