-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
55 lines (55 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
description = "A tiny WebAuthn server";
inputs = {
git-hooks.inputs.nixpkgs.follows = "nixpkgs";
git-hooks.url = "github:cachix/git-hooks.nix";
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs =
{
self,
nixpkgs,
git-hooks,
}:
{
overlays.default = (_: prev: { webauthn-tiny = prev.callPackage ./package.nix { }; });
nixosModules.default = {
nixpkgs.overlays = [ self.overlays.default ];
imports = [ ./module.nix ];
};
legacyPackages =
nixpkgs.lib.genAttrs
[
"aarch64-linux"
"x86_64-linux"
]
(
system:
import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
}
);
devShells = nixpkgs.lib.mapAttrs (system: pkgs: {
default = pkgs.mkShell {
inputsFrom = [ pkgs.webauthn-tiny ];
packages = [
pkgs.cargo-watch
pkgs.just
pkgs.libargon2
];
inherit
(git-hooks.lib.${system}.run {
src = ./.;
hooks = {
deadnix.enable = true;
nixfmt-rfc-style.enable = true;
rustfmt.enable = true;
};
})
shellHook
;
};
}) self.legacyPackages;
};
}