DAX: re-enable testing and build only on artiq-full #58
|
@ -3,8 +3,8 @@ let
|
||||||
condaBuild = import ./fast/conda/build.nix { inherit pkgs; };
|
condaBuild = import ./fast/conda/build.nix { inherit pkgs; };
|
||||||
condaFakeSource = import ./fast/conda/fake-source.nix { inherit pkgs; };
|
condaFakeSource = import ./fast/conda/fake-source.nix { inherit pkgs; };
|
||||||
dualPackage = (
|
dualPackage = (
|
||||||
{ name, version, src, pythonOptions ? {}, condaOptions ? {}, withManual ? true}:
|
{ name, version, src, pythonOptions ? {}, condaOptions ? {}, enabled ? true, withManual ? true}:
|
||||||
{
|
pkgs.lib.optionalAttrs enabled ({
|
||||||
|
|||||||
"${name}" = pkgs.python3Packages.buildPythonPackage ({
|
"${name}" = pkgs.python3Packages.buildPythonPackage ({
|
||||||
inherit version;
|
inherit version;
|
||||||
name = "${name}-${version}";
|
name = "${name}-${version}";
|
||||||
|
@ -38,7 +38,7 @@ let
|
||||||
echo doc manual ${dest}/html index.html >> $out/nix-support/hydra-build-products
|
echo doc manual ${dest}/html index.html >> $out/nix-support/hydra-build-products
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
})
|
}))
|
||||||
);
|
);
|
||||||
# https://github.com/m-labs/artiq/issues/23
|
# https://github.com/m-labs/artiq/issues/23
|
||||||
hidapi = pkgs.hidapi.overrideAttrs (oa: {
|
hidapi = pkgs.hidapi.overrideAttrs (oa: {
|
||||||
|
@ -242,6 +242,7 @@ in
|
||||||
}) // (dualPackage rec {
|
}) // (dualPackage rec {
|
||||||
name = "dax";
|
name = "dax";
|
||||||
version = "6.4";
|
version = "6.4";
|
||||||
|
enabled = builtins.head (builtins.splitVersion version) == builtins.head (builtins.splitVersion artiq.version);
|
||||||
lriesebos marked this conversation as resolved
Outdated
sb10q
commented
This will break with version >=10. Use This will break with version >=10. Use ``builtins.splitVersion``.
lriesebos
commented
Still a lot of Nix to learn for me. Tnx for the tip! Still a lot of Nix to learn for me. Tnx for the tip!
|
|||||||
withManual = false;
|
withManual = false;
|
||||||
src = pkgs.fetchgit {
|
src = pkgs.fetchgit {
|
||||||
url = "https://gitlab.com/duke-artiq/dax.git";
|
url = "https://gitlab.com/duke-artiq/dax.git";
|
||||||
|
|
Loading…
Reference in New Issue
Why not simply use
pkgs.lib.optionalAttrs
ondualPackage
inextras.nix
?If I apply
pkgs.lib.optionalAttrs
ondualPackage
, then the DAX version (which I use in the boolean expression) is not defined yet. That could be solved with alet
statement, but I thought this might be a more attractive solution. If you still prefer applyingpkgs.lib.optionalAttrs
ondualPackage
, let me know.