1 { lib, stdenv, fetchFromGitHub, autoreconfHook, freeglut, libGL, libGLU }:
3 stdenv.mkDerivation rec {
6 src = fetchFromGitHub {
7 owner = "linux-thinkpad";
10 sha256 = "0jywsrcr1wzkjig5cvz014c3r026sbwscbkv7zh1014lkjm0kyyh";
13 nativeBuildInputs = [ autoreconfHook ];
14 buildInputs = [ freeglut libGL libGLU ];
17 description = "GL-based laptop model that rotates in real-time via hdaps";
18 homepage = "https://github.com/linux-thinkpad/hdaps-gl";
19 license = licenses.gpl2;
20 platforms = platforms.linux;
21 maintainers = [ maintainers.symphorien ];