nixpkgs/pkgs/servers/emby/default.nix
2016-09-03 13:42:53 +02:00

36 lines
1.2 KiB
Nix

{ stdenv, fetchurl, pkgs, ... }:
stdenv.mkDerivation rec {
name = "emby-${version}";
version = "3.0.6400";
src = fetchurl {
url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz";
sha256 = "08zwqqilfs3y2kjqfan4ya0s9pns6g1pgh6wciabjzv2v2ra9kq3";
};
propagatedBuildInputs = with pkgs; [
mono
sqlite
];
buildPhase = ''
xbuild /p:Configuration="Release Mono" /p:Platform="Any CPU" /t:build MediaBrowser.Mono.sln
substituteInPlace MediaBrowser.Server.Mono/bin/Release\ Mono/System.Data.SQLite.dll.config --replace libsqlite3.so ${pkgs.sqlite.out}/lib/libsqlite3.so
substituteInPlace MediaBrowser.Server.Mono/bin/Release\ Mono/MediaBrowser.Server.Mono.exe.config --replace ProgramData-Server "/var/lib/emby/ProgramData-Server"
'';
installPhase = ''
mkdir -p $out/bin
cp -r MediaBrowser.Server.Mono/bin/Release\ Mono/* $out/bin/
'';
meta = {
description = "MediaBrowser - Bring together your videos, music, photos, and live television";
homepage = http://emby.media/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.fadenb ];
platforms = stdenv.lib.platforms.all;
};
}