-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
31 lines (31 loc) · 839 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
{
description = "flash-screen";
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.11";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
let supportedSystems = [ "aarch64-linux" "i686-linux" "x86_64-linux" ];
in (utils.lib.eachSystem supportedSystems (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(final: prev: {
flash-screen = final.callPackage ./nix/flash-screen.nix { };
})
];
};
in rec {
packages = rec {
default = flash-screen;
flash-screen = pkgs.flash-screen;
};
apps = {
default = {
type = "app";
program = "${packages.flash-screen}/bin/flash-screen";
};
};
}));
}