mirror of https://github.com/m-labs/artiq.git
10 lines
180 B
Nix
10 lines
180 B
Nix
|
{ pkgs ? import <nixpkgs> {}}:
|
||
|
with pkgs;
|
||
|
let
|
||
|
artiqPkgs = import ./default.nix {};
|
||
|
jobs = rec {
|
||
|
conda-artiq = callPackage ./conda-build.nix {};
|
||
|
} // artiqPkgs;
|
||
|
in
|
||
|
jobs
|