Skip to content

Commit c2d1da6

Browse files
committed
fix(nix): don't call the package default
1 parent 550093e commit c2d1da6

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

flake.nix

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
outputs = { self, nixpkgs, flake-utils }:
88
{
99
overlays.default = final: prev: {
10-
inherit (self.packages.${prev.system}) default;
10+
inherit (self.packages.${prev.system}) bapsicle;
1111
};
1212
nixosModules.default = import ./nixos.nix (self.overlays.default);
1313
} // flake-utils.lib.eachDefaultSystem (system:
@@ -59,10 +59,7 @@
5959
psutil
6060
];
6161
version = self.shortRev or self.dirtyShortRev or "dirty-inputs";
62-
in
63-
{
64-
packages = rec {
65-
default = pkgs.python313Packages.buildPythonApplication {
62+
bapsicle = pkgs.python313Packages.buildPythonApplication {
6663
pname = "bapsicle";
6764
inherit version;
6865
doCheck = false;
@@ -82,8 +79,12 @@
8279
./patches/2-not-beta.patch
8380
];
8481
};
82+
in
83+
{
84+
packages = rec {
85+
default = bapsicle;
8586

86-
inherit webstudio;
87+
inherit bapsicle webstudio;
8788
};
8889

8990
devShells.default = pkgs.mkShell {

0 commit comments

Comments
 (0)