mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
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
|
|
'';
|
|
}
|