16
packages/jellyfin/plugins/tvdb/default.nix
Normal file
16
packages/jellyfin/plugins/tvdb/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ pkgs, ... }:
|
||||
# AUTO-UPDATE: nix-update --flake jellyfin-plugin-tvdb
|
||||
pkgs.stdenv.mkDerivation rec {
|
||||
pname = "tvdb";
|
||||
version = "19";
|
||||
|
||||
src = pkgs.fetchzip {
|
||||
url = "https://github.com/jellyfin/jellyfin-plugin-tvdb/releases/download/v${version}/thetvdb_${version}.0.0.0.zip";
|
||||
sha256 = "sha256-011wpVwQy562XDAwAQ44GJTbu/ESHcyo5F/wrtNBAcs=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
cp -r $src $out
|
||||
'';
|
||||
}
|
Reference in New Issue
Block a user