hm/client: copybara only on x86 Linux
This commit is contained in:
parent
916240fe30
commit
09610ee555
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{ depot, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
|
||||
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux isx86;
|
||||
in
|
||||
{
|
||||
imports = [ ./common.nix ];
|
||||
|
@ -50,7 +50,7 @@ in
|
|||
graphicsmagick-imagemagick-compat
|
||||
vault
|
||||
youtube-dl
|
||||
] ++ lib.optionals isLinux [
|
||||
] ++ lib.optionals (isLinux && isx86) [
|
||||
depot.nix.pkgs.copybara
|
||||
]));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue