nixpkgs/pkgs/servers/ums/default.nix

43 lines
1.4 KiB
Nix
Raw Permalink Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchurl, makeWrapper
2015-11-08 08:52:04 +00:00
, libzen, libmediainfo , jre8
}:
stdenv.mkDerivation rec {
pname = "ums";
2020-05-06 22:17:17 +00:00
version = "9.4.2";
src = {
i686-linux = fetchurl {
2021-01-15 07:07:56 +00:00
url = "mirror://sourceforge/project/unimediaserver/${version}/" + lib.toUpper "${pname}-${version}" + "-x86.tgz";
2020-05-06 22:17:17 +00:00
sha256 = "0i319g2c3z9j131nwh5m92clgnxxxs3izplzhjb30bx4lldmjs1j";
};
x86_64-linux = fetchurl {
2021-01-15 07:07:56 +00:00
url = "mirror://sourceforge/project/unimediaserver/${version}/" + lib.toUpper "${pname}-${version}" + "-x86_64.tgz";
2020-05-06 22:17:17 +00:00
sha256 = "07wc0is86fdfyz4as3f17q8pfzl8x55ci65zvpls0a9rfyyvjjw3";
};
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
2015-11-08 08:52:04 +00:00
nativeBuildInputs = [ makeWrapper ];
2015-11-08 08:52:04 +00:00
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
2020-05-06 22:17:17 +00:00
rm -rf $out/jre
2015-11-08 08:52:04 +00:00
makeWrapper "$out/UMS.sh" "$out/bin/ums" \
2021-01-15 07:07:56 +00:00
--prefix LD_LIBRARY_PATH ":" "${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";
2021-01-15 07:07:56 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ thall snicket2100 ];
2015-11-08 08:52:04 +00:00
};
}