anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / servers / plex / raw.nix
blob2bc2b23db04773d09daa13cc59495584bb3da649
1 { lib, stdenv
2 , fetchurl
3 , dpkg
4 , writeScript
5 , curl
6 , jq
7 , common-updater-scripts
8 }:
10 # The raw package that fetches and extracts the Plex RPM. Override the source
11 # and version of this derivation if you want to use a Plex Pass version of the
12 # server, and the FHS userenv and corresponding NixOS module should
13 # automatically pick up the changes.
14 stdenv.mkDerivation rec {
15   version = "1.41.2.9200-c6bbc1b53";
16   pname = "plexmediaserver";
18   # Fetch the source
19   src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl {
20     url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb";
21     sha256 = "sha256-VTWyeve+Uz3TdWQ06CmZ9w+Gk9jBHP7EuYi0N9DTB4Q=";
22   } else fetchurl {
23     url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb";
24     sha256 = "sha256-HmgtnUsDzRIUThYdlZIzhiU02n9jSU7wtwnEA0+r1iQ=";
25   };
27   outputs = [ "out" "basedb" ];
29   nativeBuildInputs = [ dpkg ];
31   installPhase = ''
32     runHook preInstall
33     mkdir -p "$out/lib"
34     cp -dr --no-preserve='ownership' usr/lib/plexmediaserver $out/lib/
36     # Location of the initial Plex plugins database
37     f=$out/lib/plexmediaserver/Resources/com.plexapp.plugins.library.db
39     # Store the base database in the 'basedb' output
40     cat $f > $basedb
42     # Overwrite the base database in the Plex package with an absolute symlink
43     # to the '/db' file; we create this path in the FHS userenv (see the "plex"
44     # package).
45     ln -fs /db $f
46     runHook postInstall
47   '';
49   # We're running in a FHS userenv; don't patch anything
50   dontPatchShebangs = true;
51   dontStrip = true;
52   dontPatchELF = true;
53   dontAutoPatchelf = true;
55   passthru.updateScript = writeScript "${pname}-updater" ''
56     #!${stdenv.shell}
57     set -eu -o pipefail
58     PATH=${lib.makeBinPath [curl jq common-updater-scripts]}:$PATH
60     plexApiJson=$(curl -sS https://plex.tv/api/downloads/5.json)
61     latestVersion="$(echo $plexApiJson | jq .computer.Linux.version | tr -d '"\n')"
63     for platform in ${lib.concatStringsSep " " meta.platforms}; do
64       arch=$(echo $platform | cut -d '-' -f1)
65       dlUrl="$(echo $plexApiJson | jq --arg arch "$arch" -c '.computer.Linux.releases[] | select(.distro == "debian") | select(.build | contains($arch)) .url' | tr -d '"\n')"
67       latestSha="$(nix-prefetch-url $dlUrl)"
69       update-source-version plexRaw "$latestVersion" "$latestSha" --system=$platform --ignore-same-version
70     done
71   '';
73   meta = with lib; {
74     homepage = "https://plex.tv/";
75     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
76     license = licenses.unfree;
77     platforms = [ "x86_64-linux" "aarch64-linux" ];
78     maintainers = with maintainers; [
79       badmutex
80       forkk
81       lnl7
82       pjones
83       thoughtpolice
84       MayNiklas
85     ];
86     description = "Media library streaming server";
87     longDescription = ''
88       Plex is a media server which allows you to store your media and play it
89       back across many different devices.
90     '';
91   };