add Serviio Media server package and service

This commit is contained in:
Thomas Pham
2018-02-07 20:45:30 +01:00
committed by Thomas Kim Pham
parent d74a7506f0
commit f0bafef6a1
4 changed files with 125 additions and 0 deletions
+30
View File
@@ -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.free;
maintainers = [ maintainers.thpham ];
platforms = platforms.linux;
};
}