-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathflake.nix
45 lines (40 loc) · 1.17 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# <https://github.com/nix-community/poetry2nix>
poetry2nix.url = "github:nix-community/poetry2nix";
# <https://github.com/nix-systems/nix-systems>
systems.url = "github:nix-systems/default-linux";
};
outputs = {
self,
nixpkgs,
systems,
poetry2nix,
}: let
inherit (poetry2nix.lib) mkPoetry2Nix;
eachSystem = nixpkgs.lib.genAttrs (import systems);
pkgsFor = eachSystem (system: import nixpkgs {localSystem = system;});
in {
packages = eachSystem (system: let
inherit (mkPoetry2Nix {pkgs = pkgsFor.${system};}) mkPoetryApplication;
in {
default = self.packages.${system}.pyprland;
pyprland = mkPoetryApplication {
projectDir = ./.;
checkGroups = [];
};
});
devShells = eachSystem (system: let
inherit (mkPoetry2Nix {pkgs = pkgsFor.${system};}) mkPoetryEnv;
in {
default = self.devShells.${system}.pyprland;
pyprland = pkgsFor.${system}.mkShellNoCC {
packages = with pkgsFor.${system}; [
(mkPoetryEnv {projectDir = ./.;})
poetry
];
};
});
};
}