forked from M-Labs/nix-scripts
conda: add default recipe path
This commit is contained in:
parent
5407e79111
commit
a0ffa136d8
|
@ -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
|
||||
|
|
|
@ -64,7 +64,6 @@ let
|
|||
conda-artiq = import ./conda-build.nix { inherit pkgs; } {
|
||||
name = "conda-artiq";
|
||||
src = fakeCondaSource;
|
||||
recipe = "fake-conda";
|
||||
};
|
||||
in
|
||||
conda-artiq
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue