1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/os-specific/darwin/apple-source-releases/copyfile/default.nix
Matthew Bauer 9811bf2258 treewide: cleanup phases from last commit
The last commit broken Darwin stdenv. We still need to skip some
phases when Apple provides a Makefile that shouldn’t be used.
2018-05-06 16:07:55 -05:00

10 lines
155 B
Nix

{ stdenv, appleDerivation }:
appleDerivation {
dontBuild = true;
installPhase = ''
mkdir -p $out/include/
cp copyfile.h $out/include/
'';
}