summary refs log tree commit diff
path: root/pkgs/os-specific/linux/xf86-video-nested
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2012-07-16 21:15:54 +0200
committerCillian de Róiste <goibhniu@fsfe.org>2012-07-18 22:52:16 +0200
commit6efd9b24d37d81c947490fe0dba1fc26edebb4e2 (patch)
tree2da79dc7df736215505b431f30318720f7e0557b /pkgs/os-specific/linux/xf86-video-nested
parentc101d6fd63e7ee678a3a1c7fcc3a6b54eb6cd522 (diff)
downloadnixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.tar
nixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.tar.gz
nixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.tar.bz2
nixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.tar.lz
nixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.tar.xz
nixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.tar.zst
nixlib-6efd9b24d37d81c947490fe0dba1fc26edebb4e2.zip
Add xf86-video-nested
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.
Diffstat (limited to 'pkgs/os-specific/linux/xf86-video-nested')
-rw-r--r--pkgs/os-specific/linux/xf86-video-nested/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/xf86-video-nested/default.nix b/pkgs/os-specific/linux/xf86-video-nested/default.nix
new file mode 100644
index 000000000000..b663a3b3232c
--- /dev/null
+++ b/pkgs/os-specific/linux/xf86-video-nested/default.nix
@@ -0,0 +1,26 @@
+{ 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 ];
+  };
+}