kmscube: init at 2016-09-19
This commit is contained in:
parent
fee66e9463
commit
2f38d1fd1f
23
pkgs/os-specific/linux/kmscube/default.nix
Normal file
23
pkgs/os-specific/linux/kmscube/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoreconfHook, libdrm, libX11, mesa_noglu, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "kmscube-2016-09-19";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "robclark";
|
||||||
|
repo = "kmscube";
|
||||||
|
rev = "8c6a20901f95e1b465bbca127f9d47fcfb8762e6";
|
||||||
|
sha256 = "045pf4q3g5b54cdbxppn1dxpcn81h630vmhrixz1d5bcl822nhwj";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
buildInputs = [ libdrm libX11 mesa_noglu ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Example OpenGL app using KMS/GBM";
|
||||||
|
homepage = "https://github.com/robclark/kmscube";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dezgeg ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -11093,6 +11093,8 @@ with pkgs;
|
|||||||
|
|
||||||
kmscon = callPackage ../os-specific/linux/kmscon { };
|
kmscon = callPackage ../os-specific/linux/kmscon { };
|
||||||
|
|
||||||
|
kmscube = callPackage ../os-specific/linux/kmscube { };
|
||||||
|
|
||||||
latencytop = callPackage ../os-specific/linux/latencytop { };
|
latencytop = callPackage ../os-specific/linux/latencytop { };
|
||||||
|
|
||||||
ldm = callPackage ../os-specific/linux/ldm { };
|
ldm = callPackage ../os-specific/linux/ldm { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user