From ddf15bc78a869ec61487aa20edd4e8d9ba044519 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" <william@wkennington.com> Date: Tue, 30 Jun 2015 23:54:42 -0700 Subject: [PATCH] glusterfs: Propagate acl due to header references --- pkgs/tools/filesystems/glusterfs/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/filesystems/glusterfs/default.nix b/pkgs/tools/filesystems/glusterfs/default.nix index 57b36875a51..bfb739fa84a 100644 --- a/pkgs/tools/filesystems/glusterfs/default.nix +++ b/pkgs/tools/filesystems/glusterfs/default.nix @@ -17,11 +17,15 @@ let autoconf automake libtool pkgconfig zlib libaio libxml2 acl sqlite liburcu attr ]; + # Some of the headers reference acl + propagatedBuildInputs = [ + acl + ]; in stdenv.mkDerivation rec { inherit (s) name version; - inherit buildInputs; + inherit buildInputs propagatedBuildInputs; preConfigure = '' ./autogen.sh