2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-04 08:03:35 +08:00
artiq/nix/release.nix

9 lines
194 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {}}:
let
2019-02-09 10:24:22 +08:00
artiqPkgs = import ./default.nix { inherit pkgs; };
jobs = rec {
2019-02-09 10:24:22 +08:00
conda-artiq = import ./conda-build.nix { inherit pkgs; };
} // artiqPkgs;
in
jobs