compile matplotlib with Qt

pull/16/head
Sebastien Bourdeauducq 2019-04-02 10:57:18 +08:00
parent e06e5af52d
commit 74fac3f414
1 changed files with 5 additions and 1 deletions

View File

@ -30,7 +30,11 @@ let
'';
artiqpkgs = import "${generatedNix}/default.nix" { inherit pkgs; };
artiqVersion = import "${generatedNix}/pkgs/artiq-version.nix";
jobs = builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) artiqpkgs;
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; });
};
in
jobs // {
generated-nix = pkgs.lib.hydraJob generatedNix; # used by sinara-systems