conda: add default recipe path

pull/16/head
Sebastien Bourdeauducq 2019-04-19 19:52:34 +08:00
parent 5407e79111
commit a0ffa136d8
3 changed files with 1 additions and 3 deletions

View File

@ -43,7 +43,6 @@ let
conda-artiq-board = import ./conda-build.nix { inherit pkgs; } {
name = "conda-artiq-board-${target}-${variant}";
src = fakeCondaSource;
recipe = "fake-conda";
};
in
conda-artiq-board

View File

@ -64,7 +64,6 @@ let
conda-artiq = import ./conda-build.nix { inherit pkgs; } {
name = "conda-artiq";
src = fakeCondaSource;
recipe = "fake-conda";
};
in
conda-artiq

View File

@ -2,7 +2,7 @@
# recipe must be a string pointing to a path within the source.
{ pkgs }:
{ name, src, recipe }:
{ name, src, recipe ? "fake-conda"}:
with pkgs;