mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
15 lines
309 B
Nix
15 lines
309 B
Nix
{ stdenvNoCC }:
|
|
|
|
version: pname:
|
|
stdenvNoCC.mkDerivation {
|
|
inherit pname version;
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out"
|
|
echo "Individual frameworks have been deprecated. See the stdenv documentation for how to use `apple-sdk`" \
|
|
> "$out/README"
|
|
'';
|
|
|
|
passthru.isDarwinCompatStub = true;
|
|
}
|