Merge pull request #175653 from polynomialspace/master

hugo: broken = stdenv.isDarwin -> stdenv.isDarwin && stdenv.isx86_64
This commit is contained in:
Rick van Schijndel 2022-06-02 23:18:49 +02:00 committed by GitHub
commit 67dc178d77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ buildGoModule rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
broken = stdenv.isDarwin && stdenv.isx86_64;
description = "A fast and modern static website engine";
homepage = "https://gohugo.io";
license = licenses.asl20;