diff --git a/ci-root.nix b/ci-root.nix index 316750418b..bdf95957a3 100644 --- a/ci-root.nix +++ b/ci-root.nix @@ -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;