summary refs log tree commit diff
path: root/pkgs/tools/filesystems/bcachefs-tools
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-14 12:31:52 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-14 12:32:23 -0400
commitf96f3f7a5c46fc31e9c0008665cd7ae876310398 (patch)
tree10b1d2aa9dc2dc30556fa8ce70552260a338a3ec /pkgs/tools/filesystems/bcachefs-tools
parent422adc306386f73f5eb7cb0bb19ac7b5670b6f2d (diff)
downloadnixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.tar
nixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.tar.gz
nixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.tar.bz2
nixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.tar.lz
nixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.tar.xz
nixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.tar.zst
nixpkgs-f96f3f7a5c46fc31e9c0008665cd7ae876310398.zip
bcachefs-tools: Make eval more robust
No hash was changed
Diffstat (limited to 'pkgs/tools/filesystems/bcachefs-tools')
-rw-r--r--pkgs/tools/filesystems/bcachefs-tools/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/bcachefs-tools/default.nix b/pkgs/tools/filesystems/bcachefs-tools/default.nix
index 0ce69500038..5c5779037ab 100644
--- a/pkgs/tools/filesystems/bcachefs-tools/default.nix
+++ b/pkgs/tools/filesystems/bcachefs-tools/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ pkgconfig attr libuuid libscrypt libsodium keyutils liburcu zlib libaio ];
 
   preConfigure = ''
-    substituteInPlace cmd_migrate.c --replace /usr/include/dirent.h ${stdenv.glibc.dev}/include/dirent.h
+    substituteInPlace cmd_migrate.c --replace /usr/include/dirent.h ${stdenv.lib.getDev stdenv.cc.libc}/include/dirent.h
   '';
 
   installFlags = [ "PREFIX=$(out)" ];