nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libutil/default.nix

16 lines
321 B
Nix
Raw Normal View History

2015-11-04 18:49:13 +00:00
{ stdenv, appleDerivation }:
# all symbols are located in libSystem
appleDerivation {
installPhase = ''
mkdir -p $out/include
cp *.h $out/include
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.darwin;
license = licenses.apsl20;
};
}