1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

mesa: get rid of nested with in meta

This commit is contained in:
Anderson Torres 2024-03-05 23:12:50 -03:00
parent 0490e4de0f
commit 9b99f9e790

View file

@ -399,7 +399,7 @@ self = stdenv.mkDerivation {
};
};
meta = with lib; {
meta = {
description = "An open source 3D graphics library";
longDescription = ''
The Mesa project began as an open-source implementation of the OpenGL
@ -412,9 +412,9 @@ self = stdenv.mkDerivation {
'';
homepage = "https://www.mesa3d.org/";
changelog = "https://www.mesa3d.org/relnotes/${version}.html";
license = licenses.mit; # X11 variant, in most files
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ primeos vcunat ]; # Help is welcome :)
license = with lib.licenses; [ mit ]; # X11 variant, in most files
platforms = lib.platforms.mesaPlatforms;
maintainers = with lib.maintainers; [ primeos vcunat ]; # Help is welcome :)
};
};