-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
40 lines (38 loc) · 1.09 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
{
description = "Dayplanner";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ] (system:
let
pkgs = nixpkgs.legacyPackages.${system};
fontsdotconf = (pkgs.makeFontsConf { fontDirectories = [
pkgs.roboto
pkgs.font-awesome
pkgs.fira-code
];});
in
{
packages.default = pkgs.stdenv.mkDerivation {
name = "dayplanner";
src = self;
env = {
FONTCONFIG_FILE = fontsdotconf;
};
buildPhase = "true";
installPhase = "mkdir -p $out/app; install -t $out/app src/**/*.py; ";
buildInputs = [
(pkgs.python3.withPackages(ppkgs: [
ppkgs.recurring-ical-events
ppkgs.arrow
ppkgs.icalendar
ppkgs.pillow
ppkgs.pyyaml
ppkgs.requests
]))
];
};
});
}