Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit 2a21f16

Browse files
authored
Merge pull request #76 from Ma27/flake-input-updates
flake: Bump `nixpkgs` & `flake-utils`
2 parents d7cc288 + bf9671b commit 2a21f16

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

flake.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
inputs = {
55
naersk.url = "github:nix-community/naersk";
66
utils.url = "github:numtide/flake-utils";
7-
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.05";
7+
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.11";
88
naersk.inputs.nixpkgs.follows = "nixpkgs";
99
};
1010

@@ -19,7 +19,7 @@
1919
pname = "rnix-lsp";
2020
root = ./.;
2121
doCheck = true;
22-
checkInputs = [ pkgs.nixUnstable ];
22+
checkInputs = [ pkgs.nix_2_4 ];
2323
};
2424
defaultPackage = packages.rnix-lsp;
2525

src/lookup.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,10 @@ mod tests {
296296
}
297297

298298
#[test]
299+
// FIXME re-activate it again for macos as soon as
300+
// https://github.com/NixOS/nix/issues/5884 / https://github.com/nix-community/rnix-lsp/issues/75
301+
// is properly resolved
302+
#[cfg_attr(target_os = "macos", ignore)]
299303
fn test_provide_builtins() {
300304
let root = rnix::parse("builtins.map (y: y)").node();
301305
let mut app = App {

0 commit comments

Comments
 (0)