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; } {
|
conda-artiq-board = import ./conda-build.nix { inherit pkgs; } {
|
||||||
name = "conda-artiq-board-${target}-${variant}";
|
name = "conda-artiq-board-${target}-${variant}";
|
||||||
src = fakeCondaSource;
|
src = fakeCondaSource;
|
||||||
recipe = "fake-conda";
|
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
conda-artiq-board
|
conda-artiq-board
|
||||||
|
|
|
@ -64,7 +64,6 @@ let
|
||||||
conda-artiq = import ./conda-build.nix { inherit pkgs; } {
|
conda-artiq = import ./conda-build.nix { inherit pkgs; } {
|
||||||
name = "conda-artiq";
|
name = "conda-artiq";
|
||||||
src = fakeCondaSource;
|
src = fakeCondaSource;
|
||||||
recipe = "fake-conda";
|
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
conda-artiq
|
conda-artiq
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# recipe must be a string pointing to a path within the source.
|
# recipe must be a string pointing to a path within the source.
|
||||||
|
|
||||||
{ pkgs }:
|
{ pkgs }:
|
||||||
{ name, src, recipe }:
|
{ name, src, recipe ? "fake-conda"}:
|
||||||
|
|
||||||
with pkgs;
|
with pkgs;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue