2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchgit, autoreconfHook, libdrm, libX11, libGL, mesa, pkg-config }:
|
2015-05-15 13:38:27 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2018-09-14 19:28:10 +01:00
|
|
|
name = "kmscube-2018-06-17";
|
2015-05-15 13:38:27 +01:00
|
|
|
|
2017-03-11 14:36:56 +00:00
|
|
|
src = fetchgit {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "git://anongit.freedesktop.org/mesa/kmscube";
|
2018-09-14 19:28:10 +01:00
|
|
|
rev = "9dcce71e603616ee7a54707e932f962cdf8fb20a";
|
|
|
|
sha256 = "1q5b5yvyfj3127385mp1bfmcbnpnbdswdk8gspp7g4541xk4k933";
|
2015-05-15 13:38:27 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2019-05-28 20:09:34 +01:00
|
|
|
buildInputs = [ libdrm libX11 libGL mesa ];
|
2015-05-15 13:38:27 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-15 13:38:27 +01:00
|
|
|
description = "Example OpenGL app using KMS/GBM";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gitlab.freedesktop.org/mesa/kmscube";
|
2015-05-15 13:38:27 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|