imgproxy: fix build on Darwin
This commit is contained in:
parent
27d7c671af
commit
37b3deb758
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection }:
|
||||
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
|
||||
, stdenv, libunwind }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "imgproxy";
|
||||
|
@ -17,7 +18,8 @@ buildGoModule rec {
|
|||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ gobject-introspection vips ];
|
||||
buildInputs = [ gobject-introspection vips ]
|
||||
++ lib.optionals stdenv.isDarwin [ libunwind ];
|
||||
|
||||
preBuild = ''
|
||||
export CGO_LDFLAGS_ALLOW='-(s|w)'
|
||||
|
|
Loading…
Reference in a new issue