nixpkgs/pkgs/os-specific/linux/xf86-video-nouveau/default.nix
aszlig 86f293a1e5
xf86-video-nouveau: Add pixman to buildInputs.
Well, either this build is only broken on my system or noone actually uses
nouveau? Even when looking into the source tree it seems to require pixman, so I
suppose it didn't work for anyone prior to this commit.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2013-01-10 03:29:44 +01:00

44 lines
953 B
Nix

{ stdenv
, fetchgit
, autoconf
, automake
, libtool
, xorgserver, xproto, fontsproto, xf86driproto, renderproto, videoproto, pixman
, utilmacros
, libdrm
, pkgconfig }:
stdenv.mkDerivation {
name = "xf86-video-nouveau-2012-03-05";
src = fetchgit {
url = git://anongit.freedesktop.org/nouveau/xf86-video-nouveau;
rev = "f5d1cd2cb6808838ae1a188cef888eaa9582c76d";
sha256 = "8c20e9ce7897fbd4c5097e4738e80ecca30e6326b758a13fc97f96ccc12fd7d9";
};
buildInputs = [
autoconf
automake
libtool
xorgserver xproto fontsproto xf86driproto renderproto videoproto pixman
utilmacros
libdrm
pkgconfig
];
NIX_CFLAGS_COMPILE = "-I${pixman}/include/pixman-1";
preConfigure = "autoreconf -vfi";
meta = {
homepage = http://nouveau.freedesktop.org/wiki/;
description = "The xorg driver for nouveau-driven video cards";
license = "gplv2";
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}