Skip to content

Commit

Permalink
mesa: 24.3.2 -> 24.3.3 (#370696)
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 authored Jan 3, 2025
2 parents 9855f26 + 22ed6be commit 92befe3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/mesa/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa
rec {
pname = "mesa";
version = "24.3.2";
version = "24.3.3";

src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mesa";
repo = "mesa";
rev = "mesa-${version}";
hash = "sha256-6EcSOE73wEz+aS4C+GUVfcbJtGB0MvIL4a6zA1ohVGA=";
hash = "sha256-OThJ/txyJ6p879jG5qOXX6mL27t7Uz/tbr620iRMeIc=";
};

meta = {
Expand Down
14 changes: 12 additions & 2 deletions pkgs/development/libraries/mesa/gbm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,19 @@
let
common = import ./common.nix { inherit lib fetchFromGitLab; };
in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "mesa-libgbm";
inherit (common) version src meta;
inherit (common) meta;

version = "24.3.2";

src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mesa";
repo = "mesa";
rev = "mesa-${version}";
hash = "sha256-6EcSOE73wEz+aS4C+GUVfcbJtGB0MvIL4a6zA1ohVGA=";
};

mesonAutoFeatures = "disabled";

Expand Down

0 comments on commit 92befe3

Please sign in to comment.