nixpkgs/pkgs/servers/serviio/default.nix

29 lines
887 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "serviio";
2020-05-10 15:56:28 +00:00
version = "2.1";
src = fetchurl {
url = "http://download.serviio.org/releases/${pname}-${version}-linux.tar.gz";
2020-05-10 15:56:28 +00:00
sha256 = "0mxpdyhjf4w83q8ssmvpxm95hw4x7lfkh48vvdablccfndh82x2i";
};
installPhase = ''
mkdir -p $out
cp -R config legal lib library plugins LICENCE.txt NOTICE.txt README.txt RELEASE_NOTES.txt $out
'';
meta = with lib; {
homepage = "https://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.
'';
2018-01-19 18:11:03 +00:00
license = licenses.unfree;
maintainers = [ maintainers.thpham ];
platforms = platforms.linux;
};
}