Skip to content

Commit df91ae1

Browse files
Merge staging-next into staging
2 parents 7fdab2f + 6582a8d commit df91ae1

5 files changed

Lines changed: 31 additions & 25 deletions

File tree

pkgs/development/libraries/mesa/default.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,8 @@ stdenv.mkDerivation {
6464
# TODO: Remove when https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6121 is merged and available
6565
(fetchpatch {
6666
name = "nine_debug-Make-tid-more-type-correct";
67-
# Patch adjusted for version `20.1`, before the big mesa dirs change
68-
# `gallium: rename 'state tracker' to 'frontend'`.
69-
# Patch for versions after that change is at
70-
# https://gitlab.freedesktop.org/mesa/mesa/commit/aebbf819df6d1e3b4745ef16d0e833300ad67044.patch
71-
url = "https://gitlab.freedesktop.org/nh2/mesa/commit/3385c49684375f1153a52ed7ccda3f5135268a41.patch";
72-
sha256 = "1ci694sqjll44c9g2md4krhk6qlvq51r7ad5rnnfdnf3l8ys0i50";
67+
url = "https://gitlab.freedesktop.org/mesa/mesa/commit/aebbf819df6d1e.patch";
68+
sha256 = "17248hyzg43d73c86p077m4lv1pkncaycr3l27hwv9k4ija9zl8q";
7369
})
7470
]
7571
# do not prefix user provided dri-drivers-path
@@ -101,6 +97,10 @@ stdenv.mkDerivation {
10197
'DATADIR "/drirc.d"' '"${placeholder "out"}/drirc.d"'
10298
substituteInPlace src/util/meson.build --replace \
10399
"get_option('datadir')" "'${placeholder "out"}'"
100+
'' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
101+
substituteInPlace meson.build --replace \
102+
"find_program('nm')" \
103+
"find_program('${stdenv.cc.targetPrefix}nm')"
104104
'';
105105

106106
outputs = [ "out" "dev" "drivers" ] ++ lib.optional enableOSMesa "osmesa";

pkgs/development/libraries/rnnoise/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
stdenv.mkDerivation (rec {
44
pname = "rnnoise";
5-
version = "2019-04-24";
5+
version = "2020-06-28";
66

77
src = fetchFromGitHub {
88
owner = "xiph";
99
repo = "rnnoise";
10-
rev = "9acc1e5a633e0961a5895a73204df24744f199b6";
11-
sha256 = "17xip4z0skpzas7wrdyi87j46mbz9jncpj554m8654bqpkxis0pr";
10+
rev = "90ec41ef659fd82cfec2103e9bb7fc235e9ea66c";
11+
sha256 = "02z6qzjajhlpsb80lwl7cqqga9hm638psnqnppjkw84w4lrp15ny";
1212
};
1313

1414
nativeBuildInputs = [ autoreconfHook ];

pkgs/os-specific/linux/nvidia-x11/default.nix

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,15 @@ rec {
3333
beta = stable;
3434

3535
# Vulkan developer beta driver
36-
vulkan_beta = generic {
37-
version = "450.56.11";
38-
persistencedVersion = "450.57";
39-
settingsVersion = "450.57";
40-
sha256_64bit = "1k64h8sp4rf6kc7liypznjgkmxi67njy1s8xy2r341fhl62pl010";
41-
settingsSha256 = "1clbj9a3kv3j8jg35c197gd7b3f9f9f4h9ll5hlax95hdg12lgan";
42-
persistencedSha256 = "17747z1fsbiznfsmahxmz8kmhwwcjanpfih60v5mwzk63gy4i3d5";
43-
url = "https://developer.nvidia.com/vulkan-beta-4505611-linux";
36+
# See here for more information: https://developer.nvidia.com/vulkan-driver
37+
vulkan_beta = generic rec {
38+
version = "455.46.02";
39+
persistencedVersion = "455.45.01";
40+
settingsVersion = "455.45.01";
41+
sha256_64bit = "05y4scg62mrhjnj2c8689m5hdyzqnx5p8vqvdqvv76zy970723l7";
42+
settingsSha256 = "09v86y2c8xas9ql0bqr7vrjxx3if6javccwjzyly11dzffm02h7g";
43+
persistencedSha256 = "13s4b73il0lq2hs81q03176n16mng737bfsp3bxnxgnrv3whrayz";
44+
url = "https://developer.nvidia.com/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux";
4445
};
4546

4647
# Last one supporting x86

pkgs/tools/networking/dnsperf/default.nix

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkgconfig
2-
, bind, zlib, openssl, libcap
2+
, openssl, ldns
33
}:
44

55
stdenv.mkDerivation rec {
66
pname = "dnsperf";
7-
version = "2.3.4";
7+
version = "2.4.0";
88

99
# The same as the initial commit of the new GitHub repo (only readme changed).
1010
src = fetchFromGitHub {
1111
owner = "DNS-OARC";
1212
repo = "dnsperf";
1313
rev = "v${version}";
14-
sha256 = "1lyci2vdl6g0s5pqs7dkq7pxdahcpkzh614wmy5fwi2f3334y0d1";
14+
sha256 = "0q7zmzhhx71v41wf6rhyvpil43ch4a9sx21x47wgcg362lca3cbz";
1515
};
1616

1717
outputs = [ "out" "man" "doc" ];
1818

1919
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2020

21-
buildInputs = [ bind zlib openssl ]
22-
++ stdenv.lib.optionals stdenv.isLinux [ libcap.lib ];
21+
buildInputs = [
22+
openssl
23+
ldns # optional for DDNS (but cheap anyway)
24+
];
25+
26+
doCheck = true;
2327

2428
# For now, keep including the old PDFs as well.
2529
# https://github.com/DNS-OARC/dnsperf/issues/27

pkgs/tools/typesetting/tectonic/default.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
rustPlatform.buildRustPackage rec {
55
pname = "tectonic";
6-
version = "0.3.0";
6+
version = "0.3.3";
77

88
src = fetchFromGitHub {
99
owner = "tectonic-typesetting";
1010
repo = "tectonic";
1111
rev = "tectonic@${version}";
12-
sha256 = "yJzfymA4elyyeVR8FzTJe8wgs+vm3RWwcOh7IlmBYPE=";
12+
sha256 = "1ncczcchyphprkrb8spya400gi212a6akx18fm3j4xdhmg9caj3f";
1313
};
1414

15-
cargoSha256 = "7zqr54H6GemiM/xuHOH6+s669IG2orj1neoqAH+wnV4=";
15+
cargoSha256 = "11xvq0l9xrppcplkshd5wxv90s97x4iavhzbdk9px992zl0m6ar6";
1616

1717
nativeBuildInputs = [ pkgconfig ];
1818

@@ -29,6 +29,7 @@ rustPlatform.buildRustPackage rec {
2929
meta = with stdenv.lib; {
3030
description = "Modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive";
3131
homepage = "https://tectonic-typesetting.github.io/";
32+
changelog = "https://github.com/tectonic-typesetting/tectonic/blob/tectonic@${version}/CHANGELOG.md";
3233
license = with licenses; [ mit ];
3334
maintainers = [ maintainers.lluchs maintainers.doronbehar ];
3435
};

0 commit comments

Comments
 (0)