mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
xfsprogs: propagate libuuid
Before, this would fail because libuuid needed to be available. > echo '#include <xfs/xfs.h>' | cc -E -
This commit is contained in:
parent
ce823a8dbc
commit
5d433e35d5
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ stdenv.mkDerivation rec {
|
|||
./4.3.0-sharedlibs.patch
|
||||
];
|
||||
|
||||
buildInputs = [ gettext libuuid readline ];
|
||||
propagatedBuildInputs = [ libuuid ];
|
||||
buildInputs = [ gettext readline ];
|
||||
|
||||
outputs = [ "dev" "out" "bin" ]; # TODO: review xfs
|
||||
|
||||
|
|
Loading…
Reference in a new issue