nixpkgs/pkgs/os-specific/linux/kmscube/default.nix

23 lines
700 B
Nix
Raw Normal View History

2018-03-28 13:24:46 +00:00
{ stdenv, fetchgit, autoreconfHook, libdrm, libX11, libGL, mesa_noglu, pkgconfig }:
2015-05-15 12:38:27 +00:00
stdenv.mkDerivation rec {
2017-03-11 14:36:56 +00:00
name = "kmscube-2017-03-19";
2015-05-15 12:38:27 +00:00
2017-03-11 14:36:56 +00:00
src = fetchgit {
url = git://anongit.freedesktop.org/mesa/kmscube;
2017-03-11 14:36:56 +00:00
rev = "b88a44d95eceaeebc5b9c6972ffcbfe9eca00aea";
sha256 = "029ccslfavz6jllqv980sr6mj9bdbr0kx7bi21ra0q9yl2vh0yca";
2015-05-15 12:38:27 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2018-03-28 13:24:46 +00:00
buildInputs = [ libdrm libX11 libGL mesa_noglu ];
2015-05-15 12:38:27 +00:00
meta = with stdenv.lib; {
description = "Example OpenGL app using KMS/GBM";
homepage = https://github.com/robclark/kmscube;
2015-05-15 12:38:27 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dezgeg ];
platforms = platforms.linux;
};
}