1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00
nixpkgs/pkgs/tools/misc/hdaps-gl/default.nix

25 lines
806 B
Nix
Raw Normal View History

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