inquisitor/flake.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

2022-12-02 06:01:36 +00:00
{
inputs = {
2022-12-12 21:53:10 +00:00
my-flake.url = "github:Jaculabilis/my-flake";
nixpkgs.url = "github:NixOS/nixpkgs?ref=refs/tags/22.11";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
2022-12-02 06:01:36 +00:00
};
2022-12-12 21:53:10 +00:00
outputs = { self, my-flake, nixpkgs, flake-compat }:
let
2022-12-12 21:53:10 +00:00
systems = [ "aarch64-linux" "x86_64-linux" ];
each = system:
let
pkgs = (import nixpkgs {
2022-12-12 21:53:10 +00:00
inherit system;
overlays = [ self.overlays.default ];
});
in {
packages.${system} = {
default = self.packages.${system}.inquisitor;
inquisitor = pkgs.inquisitor;
env = pkgs.inquisitor.dependencyEnv;
};
2022-12-12 21:53:10 +00:00
devShells.${system} = {
default = self.devShells.${system}.inquisitor;
inquisitor = pkgs.mkShell {
buildInputs = [ (pkgs.python3.withPackages (p: [p.poetry])) ];
shellHook = ''
PS1="(inquisitor) $PS1"
'';
};
sources = pkgs.mkShell {
buildInputs = [ self.packages.${system}.env ];
shellHook = ''
PS1="(sources) $PS1"
'';
};
2022-12-12 21:53:10 +00:00
};
};
in (my-flake.outputs-for each systems) // {
2022-12-12 21:53:10 +00:00
overlays.default = final: prev: {
inquisitor = final.poetry2nix.mkPoetryApplication {
projectDir = ./.;
};
};
2022-12-14 04:03:28 +00:00
nixosModules.default = import ./module.nix self;
2022-12-02 06:01:36 +00:00
};
}