trying to work around hydra bug

release-7
Sebastien Bourdeauducq 2022-02-12 18:31:34 +08:00
parent f77f2f1675
commit de6db2239b
1 changed files with 7 additions and 1 deletions

View File

@ -154,12 +154,18 @@
];
}
];
hydrabug = pkgs.stdenvNoCC.mkDerivation {
name = "hydrabug";
src = self;
phases = ["installPhase"];
installPhase = "cp $src/README.md $out";
};
};
defaultPackage.x86_64-linux = packages.x86_64-linux.conda-channel;
hydraJobs = {
inherit (packages.x86_64-linux) conda-channel;
inherit (packages.x86_64-linux) conda-channel hydrabug;
};
};
}