forked from hyprland-community/pyprland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
39 lines (36 loc) · 976 Bytes
/
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
poetry2nix.url = "github:nix-community/poetry2nix";
systems.url = "github:nix-systems/default";
};
outputs = {
self,
nixpkgs,
systems,
poetry2nix,
}: let
inherit (poetry2nix.lib) mkPoetry2Nix;
supportedSystems = nixpkgs.lib.genAttrs (import systems);
pkgsFor = system: nixpkgs.legacyPackages.${system};
in {
packages = supportedSystems (system: let
inherit (mkPoetry2Nix {pkgs = pkgsFor system;}) mkPoetryApplication;
in {
default = mkPoetryApplication {
projectDir = self;
checkGroups = [];
};
});
devShells = supportedSystems (system: let
inherit (mkPoetry2Nix {pkgs = pkgsFor system;}) mkPoetryEnv;
in {
default = (pkgsFor system).mkShellNoCC {
packages = with (pkgsFor system); [
(mkPoetryEnv {projectDir = self;})
poetry
];
};
});
};
}