Skip to content

Commit 92befe3

Browse files
authored
mesa: 24.3.2 -> 24.3.3 (NixOS#370696)
2 parents 9855f26 + 22ed6be commit 92befe3

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

pkgs/development/libraries/mesa/common.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa
66
rec {
77
pname = "mesa";
8-
version = "24.3.2";
8+
version = "24.3.3";
99

1010
src = fetchFromGitLab {
1111
domain = "gitlab.freedesktop.org";
1212
owner = "mesa";
1313
repo = "mesa";
1414
rev = "mesa-${version}";
15-
hash = "sha256-6EcSOE73wEz+aS4C+GUVfcbJtGB0MvIL4a6zA1ohVGA=";
15+
hash = "sha256-OThJ/txyJ6p879jG5qOXX6mL27t7Uz/tbr620iRMeIc=";
1616
};
1717

1818
meta = {

pkgs/development/libraries/mesa/gbm.nix

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,19 @@
1515
let
1616
common = import ./common.nix { inherit lib fetchFromGitLab; };
1717
in
18-
stdenv.mkDerivation {
18+
stdenv.mkDerivation rec {
1919
pname = "mesa-libgbm";
20-
inherit (common) version src meta;
20+
inherit (common) meta;
21+
22+
version = "24.3.2";
23+
24+
src = fetchFromGitLab {
25+
domain = "gitlab.freedesktop.org";
26+
owner = "mesa";
27+
repo = "mesa";
28+
rev = "mesa-${version}";
29+
hash = "sha256-6EcSOE73wEz+aS4C+GUVfcbJtGB0MvIL4a6zA1ohVGA=";
30+
};
2131

2232
mesonAutoFeatures = "disabled";
2333

0 commit comments

Comments
 (0)