571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.7 KiB
Nix
46 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, libICE, libXext, libXi, libXrandr, libXxf86vm, libGLX, libGLU, cmake
|
|
, testers
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "freeglut";
|
|
version = "3.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/freeglut/freeglut-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-nD1NZRb7+gKA7ck8d2mPtzA+RDwaqvN9Jp4yiKbD6lI=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libICE libXext libXi libXrandr libXxf86vm libGLU ];
|
|
|
|
cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-DOPENGL_INCLUDE_DIR=${libGLX.dev}/include"
|
|
"-DOPENGL_gl_LIBRARY:FILEPATH=${libGLX}/lib/libGL.dylib"
|
|
"-DOPENGL_glu_LIBRARY:FILEPATH=${libGLU}/lib/libGLU.dylib"
|
|
"-DFREEGLUT_BUILD_DEMOS:BOOL=OFF"
|
|
"-DFREEGLUT_BUILD_STATIC:BOOL=OFF"
|
|
];
|
|
|
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
meta = with lib; {
|
|
description = "Create and manage windows containing OpenGL contexts";
|
|
longDescription = ''
|
|
FreeGLUT is an open source alternative to the OpenGL Utility Toolkit
|
|
(GLUT) library. GLUT (and hence FreeGLUT) allows the user to create and
|
|
manage windows containing OpenGL contexts on a wide range of platforms
|
|
and also read the mouse, keyboard and joystick functions. FreeGLUT is
|
|
intended to be a full replacement for GLUT, and has only a few
|
|
differences.
|
|
'';
|
|
homepage = "https://freeglut.sourceforge.net/";
|
|
license = licenses.mit;
|
|
pkgConfigModules = [ "glut" ];
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
})
|