Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plex: 1.13.5.5291 -> 1.13.8.5395 #47562

Merged
merged 2 commits into from
Sep 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 4 additions & 5 deletions pkgs/servers/plex/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
let
plexPass = throw "Plex pass has been removed at upstream's request; please unset nixpkgs.config.plex.pass";
plexpkg = if enablePlexPass then plexPass else {
version = "1.13.5.5291";
vsnHash = "6fa5e50a8";
sha256 = "1h0r7hxxw5jf2dn8w4cnj71dm873y2j0l87rg8pf0r3cyx6rhxnx";
version = "1.13.8.5395";
vsnHash = "10d48da0d";
sha256 = "0lpsh87kcrqwi2qqkj1ccb86hif535yb45hhc41c0ixsfxbqk5cw";
};

in stdenv.mkDerivation rec {
Expand Down Expand Up @@ -39,7 +39,6 @@ in stdenv.mkDerivation rec {
for bin in "Plex Media Server" \
"Plex DLNA Server" \
"Plex Media Scanner" \
"Plex Media Server Tests" \
"Plex Relay" \
"Plex Script Host" \
"Plex Transcoder" \
Expand All @@ -66,7 +65,7 @@ in stdenv.mkDerivation rec {
RSC=$out/usr/lib/plexmediaserver/Resources
for db in "com.plexapp.plugins.library.db"; do
mv $RSC/$db $RSC/base_$db
ln -s ${dataDir}/.skeleton/$db $RSC/$db
ln -s "${dataDir}/.skeleton/$db" $RSC/$db
done
'';

Expand Down