forked from mirrors/nixpkgs
6efd9b24d3
This does not yet compile. I had a working version from an obsolete github repo, but then found the upstream repo. Perhaps it needs a newer Xorg.
27 lines
818 B
Nix
27 lines
818 B
Nix
{ stdenv, fetchgit, autoconf, automake, fontsproto, libX11, libXext
|
|
, libtool, pkgconfig, renderproto, utilmacros, xorgserver
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xf86-video-nested-2012-06-15";
|
|
|
|
src = fetchgit {
|
|
url = git://anongit.freedesktop.org/xorg/driver/xf86-video-nested;
|
|
rev = "ad48dc6eb98776a8a886f26f31c0110352fa1da4";
|
|
sha256 = "43a102405acdcdb346ab197b33c8fa724d2140f33754f8ee3941a0eea152735c";
|
|
};
|
|
|
|
buildInputs =
|
|
[ autoconf automake fontsproto libX11 libXext libtool pkgconfig
|
|
renderproto utilmacros xorgserver
|
|
];
|
|
|
|
configureScript = "./autogen.sh";
|
|
|
|
meta = {
|
|
homepage = git://anongit.freedesktop.org/xorg/driver/xf86-video-nested;
|
|
description = "driver to run Xorg on top of Xorg or something else";
|
|
maintainers = [ stdenv.lib.maintainers.goibhniu ];
|
|
};
|
|
}
|