mirror of
https://github.com/loganintech/plex-simul-finder.git
synced 2026-05-30 22:31:15 +00:00
Find simultanious devices through Tautulli
This commit is contained in:
19
flake.nix
Normal file
19
flake.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, flake-utils, ... }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
python = pkgs.python3.withPackages (ps: with ps; [
|
||||
requests
|
||||
]);
|
||||
in {
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = [ python ];
|
||||
};
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user