forked from mirrors/nixpkgs
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 a new issue