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