nixpkgs/pkgs/tools/misc/hdaps-gl/default.nix

25 lines
804 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, freeglut, libGL, libGLU }:
2018-09-03 22:28:15 +00:00
let version = "0.0.7"; in
2018-09-03 22:28:15 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "hdaps-gl";
inherit version;
src = fetchFromGitHub {
owner = "linux-thinkpad";
repo = "hdaps-gl";
rev = version;
sha256 = "0jywsrcr1wzkjig5cvz014c3r026sbwscbkv7zh1014lkjm0kyyh";
2018-09-03 22:28:15 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
2018-09-03 22:28:15 +00:00
buildInputs = [ freeglut libGL libGLU ];
meta = with lib; {
2018-09-03 22:28:15 +00:00
description = "GL-based laptop model that rotates in real-time via hdaps";
homepage = "https://github.com/linux-thinkpad/hdaps-gl";
2018-09-03 22:28:15 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.symphorien ];
};
}