homebridge-prometheus-exporter/flake.nix

22 lines
514 B
Nix
Raw Normal View History

2022-11-06 13:50:39 +01:00
{
2022-12-14 00:24:06 +01:00
description = "homebridge-prometheus-exporter";
2022-11-06 13:50:39 +01:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
config = { allowUnfree = true; };
system = system;
};
in with pkgs; rec {
2022-11-21 03:06:10 +01:00
devShell = pkgs.mkShell rec { buildInputs = with pkgs; [ nodejs ]; };
2022-11-06 13:50:39 +01:00
});
}