mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
dc697d618e
Diff: https://gitlab.freedesktop.org/mesa/mesa/-/compare/mesa-24.2.5...mesa-24.2.6 Changelog: https://docs.mesa3d.org/relnotes/24.2.6.html
36 lines
1.5 KiB
Nix
36 lines
1.5 KiB
Nix
{ lib, fetchFromGitLab }:
|
|
# When updating this package, please verify at least these build (assuming x86_64-linux):
|
|
# nix build .#mesa .#pkgsi686Linux.mesa .#pkgsCross.aarch64-multiplatform.mesa .#pkgsMusl.mesa
|
|
# Ideally also verify:
|
|
# nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa
|
|
rec {
|
|
pname = "mesa";
|
|
version = "24.2.6";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "mesa";
|
|
repo = "mesa";
|
|
rev = "mesa-${version}";
|
|
hash = "sha256-yoX2DvinzqrG+rekiqO/iG6F6Zn63WC+ZaathimxO1g=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Open source 3D graphics library";
|
|
longDescription = ''
|
|
The Mesa project began as an open-source implementation of the OpenGL
|
|
specification - a system for rendering interactive 3D graphics. Over the
|
|
years the project has grown to implement more graphics APIs, including
|
|
OpenGL ES (versions 1, 2, 3), OpenCL, OpenMAX, VDPAU, VA API, XvMC, and
|
|
Vulkan. A variety of device drivers allows the Mesa libraries to be used
|
|
in many different environments ranging from software emulation to
|
|
complete hardware acceleration for modern GPUs.
|
|
'';
|
|
homepage = "https://www.mesa3d.org/";
|
|
changelog = "https://docs.mesa3d.org/relnotes/${version}.html";
|
|
license = with lib.licenses; [ mit ]; # X11 variant, in most files
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ k900 primeos vcunat ]; # Help is welcome :)
|
|
};
|
|
}
|