about summary refs log tree commit diff
path: root/pkgs/servers/serviio
diff options
context:
space:
mode:
authorThomas Pham <thomas.pham@ithings.ch>2018-01-19 13:44:14 +0100
committerThomas Kim Pham <thomas.pham@ithings.ch>2018-02-07 20:45:30 +0100
commitf0bafef6a129ed8ab0d2566ae18b10ee9c4bc161 (patch)
tree67b54e0bffe77f2318a04bfee79c5199871f422b /pkgs/servers/serviio
parentd74a7506f0a1a698f5a66c2878586a08c333caee (diff)
add Serviio Media server package and service
Diffstat (limited to 'pkgs/servers/serviio')
-rw-r--r--pkgs/servers/serviio/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/servers/serviio/default.nix b/pkgs/servers/serviio/default.nix
new file mode 100644
index 0000000000000..0c956a6c75732
--- /dev/null
+++ b/pkgs/servers/serviio/default.nix
@@ -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;
+  };
+}
\ No newline at end of file