forked from M-Labs/artiq
1
0
Fork 0
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