nixpkgs/pkgs/servers/emby/default.nix
Tristan Helmich fcdac347cf emby: 3.0.5934 -> 3.0.5971 (#15698)
Emby is now build from source instead of relying on the pre-made
binaries released on GitHub.
2016-05-25 21:23:42 +02:00

36 lines
1.2 KiB
Nix

{ stdenv, fetchurl, pkgs, ... }:
stdenv.mkDerivation rec {
name = "emby-${version}";
version = "3.0.5971";
src = fetchurl {
url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz";
sha256 = "1ahx8y8l7hybkq6wy83cpgnc741q7583lp6h7qnin6x73l2wq2i8";
};
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;
};
}