mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Fixed gogs bug pertaining to passing tags
This commit is contained in:
parent
9e693a074d
commit
a03e461b5f
@ -27,8 +27,11 @@ buildGoPackage rec {
|
||||
nativeBuildInputs = [ makeWrapper ]
|
||||
++ optional pamSupport pam;
|
||||
|
||||
buildFlags = optional sqliteSupport "-tags sqlite"
|
||||
++ optional pamSupport "-tags pam";
|
||||
buildFlags = "-tags";
|
||||
|
||||
buildFlagsArray =
|
||||
( optional sqliteSupport "sqlite"
|
||||
++ optional pamSupport "pam");
|
||||
|
||||
outputs = [ "bin" "out" "data" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user