nix-scripts/artiq-fast/conda-artiq.nix

24 lines
659 B
Nix
Raw Normal View History

{ pkgs }:
2019-02-15 17:23:54 +08:00
let
2019-04-24 15:17:40 +08:00
version = import ./pkgs/artiq-version.nix (with pkgs; { inherit stdenv fetchgit git; });
2019-04-19 20:11:05 +08:00
fakeCondaSource = import ./conda-fake-source.nix { inherit pkgs; } {
name = "artiq";
inherit version;
src = import ./pkgs/artiq-src.nix { fetchgit = pkgs.fetchgit; };
dependencies = import ./conda-artiq-deps.nix;
2019-11-09 18:58:21 +08:00
extraYaml =
''
about:
home: https://m-labs.hk/artiq
license: LGPL
summary: 'A leading-edge control system for quantum information experiments'
'';
2019-04-19 20:11:05 +08:00
};
2019-02-15 17:23:54 +08:00
conda-artiq = import ./conda-build.nix { inherit pkgs; } {
name = "conda-artiq";
src = fakeCondaSource;
};
in
conda-artiq