forked from DGNum/colmena
flake.nix: Clean up and add overlay
This commit is contained in:
parent
37b43cd6d7
commit
6f5d7aa29b
1 changed files with 10 additions and 4 deletions
14
flake.nix
14
flake.nix
|
@ -12,13 +12,13 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, utils, ... }: let
|
outputs = { self, nixpkgs, utils, ... }: let
|
||||||
supportedSystems = utils.lib.defaultSystems ++ [ "riscv64-linux" ];
|
supportedSystems = utils.lib.defaultSystems;
|
||||||
in utils.lib.eachSystem supportedSystems (system: let
|
in utils.lib.eachSystem supportedSystems (system: let
|
||||||
pkgs = import nixpkgs { inherit system; };
|
pkgs = import nixpkgs { inherit system; };
|
||||||
in rec {
|
in rec {
|
||||||
# We still maintain the expression in a Nixpkgs-acceptable form
|
# We still maintain the expression in a Nixpkgs-acceptable form
|
||||||
legacyPackages.colmena = import ./default.nix { inherit pkgs; };
|
packages.colmena = import ./default.nix { inherit pkgs; };
|
||||||
defaultPackage = self.legacyPackages.${system}.colmena;
|
defaultPackage = self.packages.${system}.colmena;
|
||||||
|
|
||||||
defaultApp = self.apps.${system}.colmena;
|
defaultApp = self.apps.${system}.colmena;
|
||||||
apps.colmena = {
|
apps.colmena = {
|
||||||
|
@ -33,5 +33,11 @@
|
||||||
export NIX_PATH=nixpkgs=${pkgs.path}
|
export NIX_PATH=nixpkgs=${pkgs.path}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
});
|
}) // {
|
||||||
|
overlay = final: prev: {
|
||||||
|
colmena = import ./default.nix {
|
||||||
|
pkgs = final;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue