Files
nixpkgs/pkgs/os-specific/darwin/apple-source-releases/basic_cmds/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
325 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{ lib, mkAppleDerivation }:
mkAppleDerivation {
releaseName = "basic_cmds";
outputs = [
"out"
"man"
];
xcodeHash = "sha256-gT7kP/w23d5kGKgNPYS9ydCbeVaLwriMJj0BPIHgQ4U=";
meta = {
description = "Basic commands for Darwin";
license = [
lib.licenses.isc
lib.licenses.bsd3
];
};
}