Skip to content

Commit dbc9306

Browse files
authored
Merge pull request #322844 from Eggflaw/bump-lune
lune: 0.8.0 -> 0.8.6
2 parents 8808f7d + 865a22b commit dbc9306

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pkgs/development/interpreters/lune/default.nix

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,29 @@
44
, fetchFromGitHub
55
, pkg-config
66
, darwin
7+
, cmake
78
}:
89

910
let
1011
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
1112
in
1213
rustPlatform.buildRustPackage rec {
1314
pname = "lune";
14-
version = "0.8.0";
15+
version = "0.8.6";
1516

1617
src = fetchFromGitHub {
1718
owner = "filiptibell";
1819
repo = "lune";
1920
rev = "v${version}";
20-
hash = "sha256-ZVETw+GdkrR2V8RrHAWBR+avAuN0158DlJkYBquju8E=";
21+
hash = "sha256-03ckR2FpSlaAZlhjyX3ob+7W5Pq8OLri7jT+XIM7oeQ=";
2122
fetchSubmodules = true;
2223
};
2324

24-
cargoHash = "sha256-zOjDT8Sn/p3YaG+dWyYxSWUOo11p9/WG3EyNagZRtQQ=";
25+
cargoHash = "sha256-xEUq3Cc15bUAXpUoZw8tNQo6tW3/VXeuOtjIW4zrh1Q=";
2526

2627
nativeBuildInputs = [
2728
pkg-config
29+
cmake # required for libz-ng-sys
2830
];
2931

3032
buildInputs = lib.optionals stdenv.isDarwin [
@@ -39,6 +41,7 @@ rustPlatform.buildRustPackage rec {
3941

4042
checkFlags = [
4143
# require internet access
44+
"--skip=tests::net_socket_basic"
4245
"--skip=tests::net_request_codes"
4346
"--skip=tests::net_request_compression"
4447
"--skip=tests::net_request_methods"

0 commit comments

Comments
 (0)