17 lines
428 B
Nix
17 lines
428 B
Nix
{ 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
|
|
'';
|
|
}
|