forked from M-Labs/nix-scripts
Compare commits
3 Commits
c1490f2c68
...
f5429f28ae
Author | SHA1 | Date |
---|---|---|
Astro | f5429f28ae | |
Astro | 6ba6edd6f2 | |
Astro | 5496b3fa05 |
|
@ -100,7 +100,7 @@ let
|
||||||
"uamsterdam"
|
"uamsterdam"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
artiq-board = import ./fast/artiq-board.nix { inherit pkgs; };
|
artiq-board = builtins.trace "artiq-board" (import ./fast/artiq-board.nix { inherit pkgs; });
|
||||||
conda-artiq-board = import ./conda-artiq-board.nix { inherit pkgs; };
|
conda-artiq-board = import ./conda-artiq-board.nix { inherit pkgs; };
|
||||||
src = pkgs.fetchgit {
|
src = pkgs.fetchgit {
|
||||||
url = "https://git.m-labs.hk/M-Labs/sinara-systems.git";
|
url = "https://git.m-labs.hk/M-Labs/sinara-systems.git";
|
||||||
|
@ -253,18 +253,17 @@ let
|
||||||
inherit (pkgs) stdenv lib fetchgit git python3Packages texlive texinfo;
|
inherit (pkgs) stdenv lib fetchgit git python3Packages texlive texinfo;
|
||||||
inherit (pythonDeps) sphinxcontrib-wavedrom;
|
inherit (pythonDeps) sphinxcontrib-wavedrom;
|
||||||
};
|
};
|
||||||
jobs = import generatedNix { inherit pkgs; };
|
jobs = (import generatedNix { inherit pkgs; }) // sipycoManualPackages // artiqManualPackages // {
|
||||||
_jobs = (import generatedNix { inherit pkgs; }) // sipycoManualPackages // artiqManualPackages // {
|
|
||||||
# This is in the example in the ARTIQ manual - precompile it to speed up
|
# This is in the example in the ARTIQ manual - precompile it to speed up
|
||||||
# installation for users.
|
# installation for users.
|
||||||
matplotlib-qt = pkgs.lib.hydraJob (pkgs.python3Packages.matplotlib.override { enableQt = true; });
|
matplotlib-qt = pkgs.lib.hydraJob (pkgs.python3Packages.matplotlib.override { enableQt = true; });
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
builtins.mapAttrs (key: value: builtins.trace "full-${key}" pkgs.lib.hydraJob value) jobs // {
|
builtins.mapAttrs (key: value: builtins.trace "full-${key}" pkgs.lib.hydraJob value) jobs // {
|
||||||
#artiq-full = pkgs.releaseTools.channel {
|
artiq-full = builtins.trace "channel" (pkgs.releaseTools.channel {
|
||||||
# name = "artiq-full";
|
name = "artiq-full";
|
||||||
# src = generatedNix;
|
src = generatedNix;
|
||||||
# constituents = builtins.attrValues jobs;
|
constituents = builtins.attrValues jobs;
|
||||||
#};
|
});
|
||||||
#conda-channel = import ./artiq-full/conda-channel.nix { inherit pkgs; } { inherit jobs; };
|
conda-channel = builtins.trace "conda-channel" (import ./artiq-full/conda-channel.nix { inherit pkgs; }) { inherit jobs; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue