nixpkgs/pkgs/servers/ums/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2015-11-08 08:52:04 +00:00
{ stdenv, fetchurl, makeWrapper
, libzen, libmediainfo , jre8
}:
stdenv.mkDerivation rec {
pname = "ums";
version = "9.1.0";
2015-11-08 08:52:04 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/unimediaserver/Official%20Releases/Linux/" + stdenv.lib.toUpper "${pname}-${version}" + ".tgz";
sha256 = "07wprjpwqids96v5q5fhwcxqlg8jp1vy585vl2nqbfi1vf5v294s";
name = "${pname}-${version}.tgz";
2015-11-08 08:52:04 +00:00
};
buildInputs = [ makeWrapper ];
installPhase = ''
cp -a . $out/
mkdir $out/bin
mv $out/documentation /$out/doc
# ums >= 9.0.0 ships its own JRE in the package. if we remove it, the `UMS.sh`
# script will correctly fall back to the JRE specified by JAVA_HOME
rm -rf $out/linux/jre-x64 $out/linux/jre-x86
2015-11-08 08:52:04 +00:00
makeWrapper "$out/UMS.sh" "$out/bin/ums" \
2016-06-07 18:18:38 +00:00
--prefix LD_LIBRARY_PATH ":" "${stdenv.lib.makeLibraryPath [ libzen libmediainfo] }" \
2015-11-08 08:52:04 +00:00
--set JAVA_HOME "${jre8}"
'';
meta = {
description = "Universal Media Server: a DLNA-compliant UPnP Media Server";
2015-11-08 08:52:04 +00:00
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thall ];
};
}