summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-23 21:45:13 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-04-23 21:45:13 +0200
commitccc1ccf983d672f4021539a138d13e4f999ab6f5 (patch)
tree307d59074a9c8acd2a1ce3090a8fad61f8886556
parente928311fe10dcbbcbf448e9a202986a054d117d5 (diff)
downloadnixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.tar
nixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.tar.gz
nixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.tar.bz2
nixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.tar.lz
nixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.tar.xz
nixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.tar.zst
nixlib-ccc1ccf983d672f4021539a138d13e4f999ab6f5.zip
ceph: fix eval because of typo
-rw-r--r--pkgs/tools/filesystems/ceph/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/ceph/generic.nix b/pkgs/tools/filesystems/ceph/generic.nix
index fe54922b0d07..825d14c9fb17 100644
--- a/pkgs/tools/filesystems/ceph/generic.nix
+++ b/pkgs/tools/filesystems/ceph/generic.nix
@@ -41,7 +41,7 @@ let
   hasOsd = hasServer;
   hasRadosgw = fcgi != null && expat != null && curl != null && libedit != null;
 
-  hasXio = (stdenv.isLinux || stdenv.isFreebsd) &&
+  hasXio = (stdenv.isLinux || stdenv.isFreeBSD) &&
     versionAtLeast version "0.95" &&
     accelio != null && libibverbs != null && librdmacm != null;