remove nix script (moved to dedicated repos)

master
Sebastien Bourdeauducq 2019-02-16 00:27:55 +08:00
parent 166d96bec9
commit 8ab32043a7
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
{ pkgs ? import <nixpkgs> {}}:
let
artiq-board = import <artiqSrc/nix/artiq-board.nix> { inherit pkgs; };
conda-board = import <artiqSrc/nix/conda-board.nix> { inherit pkgs; };
target = "kasli";
variants = ["berkeley" "mitll2" "mitll" "nudt" "sysu" "tsinghua2" "tsinghua" "unsw" "ustc" "wipm"];
jobs = pkgs.lib.lists.foldr (variant: start:
let
json = ../. + "/${variant}.json";
boardBinaries = artiq-board {
inherit target variant;
buildCommand = "python -m artiq.gateware.targets.kasli_generic ${json}";
};
in
start // {
"artiq-board-${target}-${variant}" = boardBinaries;
"conda-artiq-board-${target}-${variant}" = conda-board {
artiqSrc = <artiqSrc>;
boardBinaries = boardBinaries;
inherit target variant;
};
}) {} variants;
in
jobs