mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
9 lines
135 B
Nix
9 lines
135 B
Nix
{ stdenv, appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include/
|
|
cp copyfile.h $out/include/
|
|
'';
|
|
}
|