nixpkgs/pkgs/by-name/gl/gle/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
738 B
Nix
Raw Normal View History

2024-09-21 08:12:53 +00:00
{
lib,
stdenv,
2024-09-21 08:06:41 +00:00
fetchFromGitHub,
autoreconfHook,
2024-09-21 08:12:53 +00:00
libglut,
libX11,
libXt,
libXmu,
libXi,
libXext,
libGL,
libGLU,
}:
stdenv.mkDerivation rec {
pname = "gle";
2024-09-21 08:06:41 +00:00
version = "3.1.2";
2024-09-21 08:12:53 +00:00
buildInputs = [
libGLU
libGL
libglut
libX11
libXt
libXmu
libXi
libXext
];
2024-09-21 08:06:41 +00:00
nativeBuildInputs = [
autoreconfHook
];
src = fetchFromGitHub {
owner = "linas";
repo = "glextrusion";
rev = "refs/tags/${pname}-${version}";
sha256 = "sha256-yvCu0EOwxOMN6upeHX+C2sIz1YVjjB/320g+Mf24S6g=";
2016-06-10 12:43:15 +00:00
};
2024-09-21 08:12:53 +00:00
2016-06-10 12:43:15 +00:00
meta = {
description = "Tubing and extrusion library";
2024-09-21 08:12:53 +00:00
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
2016-06-10 12:43:15 +00:00
};
}