mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
9 lines
118 B
Nix
9 lines
118 B
Nix
|
{stdenv}:
|
||
|
|
||
|
assert stdenv.isDarwin;
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "darwin-arch-utility";
|
||
|
builder = ./builder.sh;
|
||
|
}
|