d69cc779b5
This reverts commit 8505e710e7
.
9 lines
188 B
Nix
9 lines
188 B
Nix
{ appleDerivation, lib, headersOnly ? false }:
|
|
|
|
appleDerivation {
|
|
installPhase = lib.optionalString headersOnly ''
|
|
mkdir -p $out/include/hfs
|
|
cp core/*.h $out/include/hfs
|
|
'';
|
|
}
|