mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
0734f54ef2
found with nixpkgs-lint
34 lines
937 B
Nix
34 lines
937 B
Nix
{ lib, stdenv, fetchgit, autoreconfHook, xorgproto, libX11, libXext
|
|
, pixman, pkg-config, utilmacros, xorgserver
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "xf86-video-nested";
|
|
version = "unstable-2017-06-12";
|
|
|
|
src = fetchgit {
|
|
url = "git://anongit.freedesktop.org/xorg/driver/xf86-video-nested";
|
|
rev = "6a48b385c41ea89354d0b2ee7f4649a1d1d9ec70";
|
|
sha256 = "133rd2kvr2q2wmwpx82bb93qbi8wm8qp1vlmbhgc7aslz0j4cqqv";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
|
|
buildInputs =
|
|
[ xorgproto libX11 libXext pixman
|
|
utilmacros xorgserver
|
|
];
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
CFLAGS = "-I${pixman}/include/pixman-1";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://cgit.freedesktop.org/xorg/driver/xf86-video-nested";
|
|
description = "A driver to run Xorg on top of Xorg or something else";
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
}
|