forked from M-Labs/nix-scripts
conda: add lld dependency for ARTIQ-7
This commit is contained in:
parent
8d4ffe3a77
commit
c706b6e0f4
|
@ -7,8 +7,6 @@ let
|
||||||
inherit version;
|
inherit version;
|
||||||
src = import ../pkgs/artiq-src.nix { fetchgit = pkgs.fetchgit; };
|
src = import ../pkgs/artiq-src.nix { fetchgit = pkgs.fetchgit; };
|
||||||
dependencies = [
|
dependencies = [
|
||||||
(if (pkgs.lib.strings.versionAtLeast version "7.0") then "llvmlite" else "llvmlite-artiq")
|
|
||||||
(if (pkgs.lib.strings.versionAtLeast version "7.0") then "llvm-tools" else "binutils-or1k-linux")
|
|
||||||
"pythonparser"
|
"pythonparser"
|
||||||
"scipy"
|
"scipy"
|
||||||
"numpy"
|
"numpy"
|
||||||
|
@ -21,7 +19,7 @@ let
|
||||||
"pygit2"
|
"pygit2"
|
||||||
"python-levenshtein"
|
"python-levenshtein"
|
||||||
"sipyco"
|
"sipyco"
|
||||||
];
|
] ++ (if (pkgs.lib.strings.versionAtLeast version "7.0") then ["llvmlite" "llvm-tools" "lld"] else ["llvmlite-artiq" "binutils-or1k-linux"]);
|
||||||
extraYaml =
|
extraYaml =
|
||||||
''
|
''
|
||||||
about:
|
about:
|
||||||
|
|
Loading…
Reference in New Issue