-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflake.nix
More file actions
46 lines (44 loc) · 1.27 KB
/
flake.nix
File metadata and controls
46 lines (44 loc) · 1.27 KB
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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
utils.url = "github:numtide/flake-utils";
yarnpnp2nix.url = "github:madjam002/yarnpnp2nix";
yarnpnp2nix.inputs.nixpkgs.follows = "nixpkgs";
yarnpnp2nix.inputs.utils.follows = "utils";
};
outputs = inputs@{ self, nixpkgs, utils, ... }:
let
nixpkgsLib = nixpkgs.lib;
in
(utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(final: prev: {
})
];
};
mkYarnPackagesFromManifest = inputs.yarnpnp2nix.lib."${system}".mkYarnPackagesFromManifest;
runnerYarnPackages = mkYarnPackagesFromManifest {
inherit pkgs;
yarnManifest = import ./yarn-manifest.nix;
packageOverrides = {
"tailscale-prometheus-sd@workspace:.".build = ''
esbuild --platform=node --bundle src/index.ts --outdir=dist
'';
};
};
in
rec {
devShell = import ./shell.nix {
inherit pkgs;
};
packages = {
default = runnerYarnPackages."tailscale-prometheus-sd@workspace:.";
};
}
)) // {
lib = import ./nix/lib { lib = nixpkgsLib; };
};
}