forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NixOS#34053 from thpham/serviio
serviio: init at 1.9
- Loading branch information
Showing
4 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
{ config, lib, pkgs, ... }: | ||
|
||
with lib; | ||
|
||
let | ||
|
||
cfg = config.services.serviio; | ||
|
||
serviioStart = pkgs.writeScript "serviio.sh" '' | ||
#!${pkgs.bash}/bin/sh | ||
SERVIIO_HOME=${pkgs.serviio} | ||
# Setup the classpath | ||
SERVIIO_CLASS_PATH="$SERVIIO_HOME/lib/*:$SERVIIO_HOME/config" | ||
# Setup Serviio specific properties | ||
JAVA_OPTS="-Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dorg.restlet.engine.loggerFacadeClass=org.restlet.ext.slf4j.Slf4jLoggerFacade | ||
-Dderby.system.home=${cfg.dataDir}/library -Dserviio.home=${cfg.dataDir} -Dffmpeg.location=${pkgs.ffmpeg}/bin/ffmpeg -Ddcraw.location=${pkgs.dcraw}/bin/dcraw" | ||
# Execute the JVM in the foreground | ||
exec ${pkgs.jre}/bin/java -Xmx512M -Xms20M -XX:+UseG1GC -XX:GCTimeRatio=1 -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=20 $JAVA_OPTS -classpath "$SERVIIO_CLASS_PATH" org.serviio.MediaServer "$@" | ||
''; | ||
|
||
in { | ||
|
||
###### interface | ||
options = { | ||
services.serviio = { | ||
|
||
enable = mkOption { | ||
type = types.bool; | ||
default = false; | ||
description = '' | ||
Whether to enable the Serviio Media Server. | ||
''; | ||
}; | ||
|
||
dataDir = mkOption { | ||
type = types.path; | ||
default = "/var/lib/serviio"; | ||
description = '' | ||
The directory where serviio stores its state, data, etc. | ||
''; | ||
}; | ||
|
||
}; | ||
}; | ||
|
||
###### implementation | ||
|
||
config = mkIf cfg.enable { | ||
systemd.services.serviio = { | ||
description = "Serviio Media Server"; | ||
after = [ "local-fs.target" "network.target" ]; | ||
wantedBy = [ "multi-user.target" ]; | ||
path = [ pkgs.serviio ]; | ||
serviceConfig = { | ||
User = "serviio"; | ||
Group = "serviio"; | ||
ExecStart = "${serviioStart}"; | ||
ExecStop = "${serviioStart} -stop"; | ||
}; | ||
}; | ||
|
||
users.extraUsers = [ | ||
{ | ||
name = "serviio"; | ||
group = "serviio"; | ||
home = cfg.dataDir; | ||
description = "Serviio Media Server User"; | ||
createHome = true; | ||
isSystemUser = true; | ||
} | ||
]; | ||
|
||
users.extraGroups = [ | ||
{ name = "serviio";} | ||
]; | ||
|
||
networking.firewall = { | ||
allowedTCPPorts = [ | ||
8895 # serve UPnP responses | ||
23423 # console | ||
23424 # mediabrowser | ||
]; | ||
allowedUDPPorts = [ | ||
1900 # UPnP service discovey | ||
]; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ stdenv, fetchurl }: | ||
|
||
stdenv.mkDerivation rec { | ||
name = "serviio-${version}"; | ||
version = "1.9"; | ||
|
||
src = fetchurl { | ||
url = "http://download.serviio.org/releases/${name}-linux.tar.gz"; | ||
sha256 = "0vi9dwpdrk087gpi0xib0hwpvdmaf9g99nfdfx2r3wmmdzw7wysl"; | ||
}; | ||
|
||
phases = ["unpackPhase" "installPhase"]; | ||
|
||
installPhase = '' | ||
mkdir -p $out | ||
cp -R config legal lib library plugins LICENCE.txt NOTICE.txt README.txt RELEASE_NOTES.txt $out | ||
''; | ||
|
||
meta = with stdenv.lib; { | ||
homepage = http://serviio.org; | ||
description = "UPnP Media Streaming Server"; | ||
longDescription = '' | ||
Serviio is a free media server. It allows you to stream your media files (music, video or images) | ||
to any DLNA-certified renderer device (e.g. a TV set, Bluray player, games console) on your home network. | ||
''; | ||
license = licenses.unfree; | ||
maintainers = [ maintainers.thpham ]; | ||
platforms = platforms.linux; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters