Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
958 B
Nix
51 lines
958 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 = "Driver to run Xorg on top of Xorg or something else";
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
}
|