ci-root: fix baserow-oss

This commit is contained in:
Luke Granger-Brown 2021-12-21 21:58:23 +00:00
parent 92a744ec1f
commit 969554f9cc

View file

@ -12,10 +12,13 @@ let
ciBits = rec {
x86_64-linux = {
machine = depot.ops.nixos.systems;
pkgs = builtins.removeAttrs depot.nix.pkgs [ "grafana-plugins" "windows" "unifiHacked" "nixpkgs-mozilla" "nightlyRust" "nightlyRustPlatform" "baserow" ];
pkgs = builtins.removeAttrs depot.nix.pkgs [ "grafana-plugins" "windows" "unifiHacked" "nixpkgs-mozilla" "nightlyRust" "nightlyRustPlatform" "baserow" "baserow-oss" ];
pkg-baserow = {
inherit (depot.nix.pkgs.baserow) backend web-frontend mjml-tcpserver;
};
pkg-baserow-oss = {
inherit (depot.nix.pkgs.baserow-oss) backend web-frontend mjml-tcpserver;
};
pkg-grafana-plugins = depot.nix.pkgs.grafana-plugins;
web = lib.filterAttrs (n: v: !lib.isFunction v) depot.web;
trains = depot.go.trains.cmd.bins;