forked from mirrors/nixpkgs
wordnet: Fix darwin build
This commit is contained in:
parent
8a5eb89b0f
commit
0a6df8a066
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, tcl, tk, xlibsWrapper, makeWrapper}:
|
||||
{ stdenv, fetchurl, tcl, tk, Cocoa, xlibsWrapper, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.0";
|
||||
|
@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "08pgjvd2vvmqk3h641x63nxp7wqimb9r30889mkyfh2agc62sjbc";
|
||||
};
|
||||
|
||||
buildInputs = [tcl tk xlibsWrapper makeWrapper];
|
||||
buildInputs = [ tcl tk xlibsWrapper makeWrapper ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
|
|
|
@ -24047,7 +24047,9 @@ in
|
|||
|
||||
wofi = callPackage ../applications/misc/wofi { };
|
||||
|
||||
wordnet = callPackage ../applications/misc/wordnet { };
|
||||
wordnet = callPackage ../applications/misc/wordnet {
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
||||
wordgrinder = callPackage ../applications/office/wordgrinder { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue