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;
|
||||
src = import ../pkgs/artiq-src.nix { fetchgit = pkgs.fetchgit; };
|
||||
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"
|
||||
"scipy"
|
||||
"numpy"
|
||||
|
@ -21,7 +19,7 @@ let
|
|||
"pygit2"
|
||||
"python-levenshtein"
|
||||
"sipyco"
|
||||
];
|
||||
] ++ (if (pkgs.lib.strings.versionAtLeast version "7.0") then ["llvmlite" "llvm-tools" "lld"] else ["llvmlite-artiq" "binutils-or1k-linux"]);
|
||||
extraYaml =
|
||||
''
|
||||
about:
|
||||
|
|
Loading…
Reference in New Issue