Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d72a60a59f08
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 25ae1fd29f81
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 13, 2021

  1. Revert "mesa: 21.0.1 -> 21.0.2"

    This reverts commit e3bc983.
    
    It caused segmentation faults for at least Sway and XWayland with the
    iris driver, see [0]. The cause and impact of this regression is still
    unknown but let's revert it until we know more.
    
    [0]: #118753 (comment)
    primeos committed Apr 13, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    kalbasit Wael Nasreddine
    Copy the full SHA
    25ae1fd View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/mesa/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/mesa/default.nix
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ with lib;
let
# Release calendar: https://www.mesa3d.org/release-calendar.html
# Release frequency: https://www.mesa3d.org/releasing.html#schedule
version = "21.0.2";
version = "21.0.1";
branch = versions.major version;

self = stdenv.mkDerivation {
@@ -46,7 +46,7 @@ self = stdenv.mkDerivation {
"ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz"
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
];
sha256 = "122vvyk6dgvbfl119pysbdyii6f255r0cg7c8gp2sdsanmdxrha6";
sha256 = "1fqj2xhhd1ary0pfg31jq6fqcnd6qgyrw1445nmz554k8n2ck7rp";
};

prePatch = "patchShebangs .";