mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
gomuks: fix build on darwin
This commit is contained in:
parent
dbb3f260ca
commit
7faf44250d
@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gomuks";
|
||||
@ -15,6 +15,8 @@ buildGoModule rec {
|
||||
|
||||
modSha256 = "03vbrh50pvx71rp6c23qc2sh0ir4jm1wl0gvi3z1c14ndzhsqky4";
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://maunium.net/go/gomuks/";
|
||||
description = "A terminal based Matrix client written in Go";
|
||||
|
@ -19367,7 +19367,9 @@ in
|
||||
inherit (darwin) libiconv;
|
||||
};
|
||||
|
||||
gomuks = callPackage ../applications/networking/instant-messengers/gomuks { };
|
||||
gomuks = callPackage ../applications/networking/instant-messengers/gomuks {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
inherit (ocamlPackages) google-drive-ocamlfuse;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user