From c74c25f938f2b7883e82c06043aedd588e557606 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 8 Apr 2019 23:35:08 +0800 Subject: [PATCH] use hydraJob for matplotlib --- main.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.nix b/main.nix index f611afe..d0b4967 100644 --- a/main.nix +++ b/main.nix @@ -33,7 +33,7 @@ let jobs = (builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) artiqpkgs) // { # This is in the example in the ARTIQ manual - precompile it to speed up # installation for users. - matplotlib-qt = (pkgs.python3Packages.matplotlib.override { enableQt = true; }); + matplotlib-qt = pkgs.lib.hydraJob (pkgs.python3Packages.matplotlib.override { enableQt = true; }); }; in jobs // {