2019-02-14 15:29:42 +08:00
|
|
|
# We need to pass the whole source to conda for the git variables to work.
|
|
|
|
# recipe must be a string pointing to a path within the source.
|
|
|
|
|
2019-02-15 18:17:34 +08:00
|
|
|
{ pkgs }:
|
2019-04-19 19:52:34 +08:00
|
|
|
{ name, src, recipe ? "fake-conda"}:
|
2019-02-14 15:29:42 +08:00
|
|
|
|
|
|
|
let
|
2020-06-09 14:30:23 +08:00
|
|
|
condaBuilderEnv = import ./builder-env.nix { inherit pkgs; };
|
2019-07-17 23:51:09 +08:00
|
|
|
in pkgs.stdenv.mkDerivation {
|
2019-02-14 15:29:42 +08:00
|
|
|
inherit name src;
|
|
|
|
buildCommand =
|
|
|
|
''
|
|
|
|
HOME=`pwd`
|
|
|
|
mkdir $out
|
2020-06-09 15:12:37 +08:00
|
|
|
${condaBuilderEnv}/bin/conda-builder-env -c "conda build --no-anaconda-upload --no-test --output-folder $out $src/${recipe}"
|
2019-02-14 15:29:42 +08:00
|
|
|
|
|
|
|
mkdir -p $out/nix-support
|
2020-06-10 11:44:19 +08:00
|
|
|
echo file conda $out/*/*.tar.bz2 >> $out/nix-support/hydra-build-products
|
2019-02-14 15:29:42 +08:00
|
|
|
'';
|
|
|
|
}
|