Skip to content

Commit

Permalink
flake: Do not use *-bin in package and devShell
Browse files Browse the repository at this point in the history
torch-bin in nixos-24.05 take too much time to build
  • Loading branch information
azuwis committed Jul 26, 2024
1 parent ac77f84 commit 6d71d4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
pianotrans-bin = pianotrans.override { python3 = python3-bin; };
in
{
default = if pkgs.stdenv.isx86_64 then pianotrans-bin else pianotrans;
default = pianotrans;
inherit pianotrans pianotrans-bin python3-bin;
}
);
Expand Down Expand Up @@ -74,7 +74,7 @@
};
in
{
default = if pkgs.stdenv.isx86_64 then shell-bin else shell;
default = shell;
inherit shell shell-bin;
}
);
Expand Down

0 comments on commit 6d71d4c

Please sign in to comment.