From a817d5b543c11ca7fcf836636afdf70b92740f86 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Mon, 25 Apr 2016 16:21:38 +0300 Subject: [PATCH] libmemcached: move cyrus_sasl to propagatedBuildInputs Reason: struct/sasl.h from libmemcached include stuff from there /nix/store/d3f91zvai71dyhs83ybzsnjfhxnv7mmh-libmemcached-1.0.18/include/libmemcached-1.0/struct/sasl.h:39:23: fatal error: sasl/sasl.h: No such file or directory --- pkgs/development/libraries/libmemcached/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libmemcached/default.nix b/pkgs/development/libraries/libmemcached/default.nix index 619aa0144976..2570c645f26e 100644 --- a/pkgs/development/libraries/libmemcached/default.nix +++ b/pkgs/development/libraries/libmemcached/default.nix @@ -19,7 +19,8 @@ stdenv.mkDerivation rec { sha256 = "1nvxwdkxj2a2g39z0g8byxjwnw4pa5xlvsmdk081q63vmfywh7zb"; }); - buildInputs = [ cyrus_sasl libevent ]; + buildInputs = [ libevent ]; + propagatedBuildInputs = [ cyrus_sasl ]; meta = with stdenv.lib; { homepage = http://libmemcached.org;