forked from okeri/iio-sway
-
Notifications
You must be signed in to change notification settings - Fork 19
/
flake.nix
47 lines (41 loc) · 983 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
40
41
42
43
44
45
46
47
{
description = "Listen iio-sensor-proxy and auto change Hyprland output orientation";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# <https://github.com/nix-systems/nix-systems>
systems.url = "github:nix-systems/default-linux";
};
outputs =
inputs@{
self,
nixpkgs,
systems,
...
}:
let
inherit (nixpkgs) lib;
eachSystem = lib.genAttrs (import systems);
pkgsFor = eachSystem (
system:
import nixpkgs {
localSystem = system;
overlays = [ ];
}
);
in
{
packages = eachSystem (system: {
default = pkgsFor.${system}.callPackage ./default.nix { };
});
devShells = eachSystem (system: {
default = pkgsFor.${system}.mkShell {
nativeBuildInputs = with pkgsFor.${system}; [
pkg-config
dbus
meson
ninja
];
};
});
};
}