From 969554f9cc45663bf4b1676e289e180c7e15ca8e Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Tue, 21 Dec 2021 21:58:23 +0000 Subject: [PATCH] ci-root: fix baserow-oss --- ci-root.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;