mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
680 B
Nix
24 lines
680 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, freeglut, libGL, libGLU }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hdaps-gl";
|
|
version = "0.0.7";
|
|
src = fetchFromGitHub {
|
|
owner = "linux-thinkpad";
|
|
repo = "hdaps-gl";
|
|
rev = version;
|
|
sha256 = "0jywsrcr1wzkjig5cvz014c3r026sbwscbkv7zh1014lkjm0kyyh";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ freeglut libGL libGLU ];
|
|
|
|
meta = with lib; {
|
|
description = "GL-based laptop model that rotates in real-time via hdaps";
|
|
homepage = "https://github.com/linux-thinkpad/hdaps-gl";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.symphorien ];
|
|
};
|
|
}
|