mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
otool & setFile: only allow on darwin
This commit is contained in:
parent
4c9cff322a
commit
2a21046f24
@ -1,5 +1,8 @@
|
||||
{ stdenv }:
|
||||
|
||||
# this tool only exists on darwin
|
||||
assert stdenv.isDarwin;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "otool";
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
{ stdenv }:
|
||||
|
||||
# this tool only exists on darwin
|
||||
assert stdenv.isDarwin;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "setFile";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user