about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix')
-rw-r--r--nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix b/nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix
index 187efa1604e0..932c7693dc88 100644
--- a/nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix
+++ b/nixpkgs/pkgs/tools/filesystems/sshfs-fuse/common.nix
@@ -24,9 +24,9 @@ in stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ meson pkg-config ninja docutils makeWrapper ];
   buildInputs = [ fuse glib ];
-  checkInputs = [ which python3Packages.pytest ];
+  nativeCheckInputs = [ which python3Packages.pytest ];
 
-  NIX_CFLAGS_COMPILE = lib.optionalString
+  env.NIX_CFLAGS_COMPILE = lib.optionalString
     (stdenv.hostPlatform.system == "i686-linux")
     "-D_FILE_OFFSET_BITS=64";