3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #14539 from colemickens/update-plex

Plex: update plex, plexpass; fix plex module to restart
This commit is contained in:
joachifm 2016-04-09 18:01:58 +02:00
commit 079c03a2c9
2 changed files with 7 additions and 6 deletions

View file

@ -128,6 +128,7 @@ in
Group = cfg.group;
PermissionsStartOnly = "true";
ExecStart = "/bin/sh -c '${cfg.package}/usr/lib/plexmediaserver/Plex\\ Media\\ Server'";
Restart = "on-failure";
};
environment = {
PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR=cfg.dataDir;

View file

@ -5,13 +5,13 @@
let
plexpkg = if enablePlexPass then {
version = "0.9.16.3.1840";
vsnHash = "cece46d";
sha256 = "0p1rnia18a67h05f7l7smkpry1ldkpdkyvs9fgrqpay3w0jfk9gd";
version = "0.9.16.4.1911";
vsnHash = "ee6e505";
sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd";
} else {
version = "0.9.15.6.1714";
vsnHash = "7be11e1";
sha256 = "1kyk41qnbm8w5bvnisp3d99cf0r72wvlggfi9h4np7sq4p8ksa0g";
version = "0.9.16.4.1911";
vsnHash = "ee6e505";
sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd";
};
in stdenv.mkDerivation rec {