summary refs log tree commit diff
path: root/pkgs/development/libraries/mesa
diff options
context:
space:
mode:
authorEdmund Wu <fangkazuto@gmail.com>2019-09-26 08:13:51 -0400
committerEdmund Wu <fangkazuto@gmail.com>2019-09-26 08:26:31 -0400
commit2f25cca931b549510ba79d2bfe0bd03ec468df37 (patch)
treed48980f241f2be30a4f3012f669e44df2fae9ad1 /pkgs/development/libraries/mesa
parenta2e3bef2e5505ebf8f21eeef88620509cd0c654a (diff)
downloadnixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.tar
nixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.tar.gz
nixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.tar.bz2
nixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.tar.lz
nixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.tar.xz
nixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.tar.zst
nixpkgs-2f25cca931b549510ba79d2bfe0bd03ec468df37.zip
mesa: 19.1.5 -> 19.2.0
Diffstat (limited to 'pkgs/development/libraries/mesa')
-rw-r--r--pkgs/development/libraries/mesa/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index cf1bdaf6432..464233e51a6 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -27,7 +27,7 @@
 with stdenv.lib;
 
 let
-  version = "19.1.5";
+  version = "19.2.0";
   branch  = head (splitString "." version);
 in
 
@@ -35,14 +35,14 @@ stdenv.mkDerivation {
   pname = "mesa";
   inherit version;
 
-  src =  fetchurl {
+  src = fetchurl {
     urls = [
       "ftp://ftp.freedesktop.org/pub/mesa/mesa-${version}.tar.xz"
       "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"
       "https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
     ];
-    sha256 = "1d3frncljickn5yi2ch1w2phwxhxpi6diyac3cbin9f76m7f2m3v";
+    sha256 = "0al5235xrsv5walyavn192mg4n4g1rykgxqg2qqn918gl2iclq5h";
   };
 
   prePatch = "patchShebangs .";