forked from barnybug/savingsessions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
38 lines (35 loc) · 1.03 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
{
description = "Application packaged using poetry2nix";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
poetry2nix = {
url = "github:nix-community/poetry2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs = { self, nixpkgs, flake-utils, poetry2nix }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
inherit (poetry2nix.lib.mkPoetry2Nix { inherit pkgs; })
mkPoetryApplication mkPoetryScriptsPackage;
myapp = mkPoetryApplication {
projectDir = self;
preferWheels = true;
};
myAppScripts = mkPoetryScriptsPackage {
projectDir = self;
python = pkgs.python311;
};
in
{
packages.default = pkgs.myapp;
devShells.default = pkgs.mkShell {
inputsFrom = [ myapp pkgs.poetry ];
buildInputs = [ myAppScripts ];
};
legacyPackages = pkgs;
}
);
}