nixpkgs/pkgs/servers/emby/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgs, ... }:
2016-04-23 13:08:45 +00:00
stdenv.mkDerivation rec {
name = "emby-${version}";
2016-08-20 07:35:57 +00:00
version = "3.0.6070";
2016-04-23 13:08:45 +00:00
src = fetchurl {
url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz";
2016-08-20 07:35:57 +00:00
sha256 = "1szxqyr1pj90dfz9ga8ddcipzidm3ajinyp1vngzvwqcsdb7dxc5";
2016-04-23 13:08:45 +00:00
};
propagatedBuildInputs = with pkgs; [
mono
sqlite
];
2016-04-23 13:08:45 +00:00
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"
2016-04-23 13:08:45 +00:00
'';
installPhase = ''
mkdir -p $out/bin
cp -r MediaBrowser.Server.Mono/bin/Release\ Mono/* $out/bin/
2016-04-23 13:08:45 +00:00
'';
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;
};
}