2015-07-03 21:05:57 +00:00
|
|
|
{ stdenv, fetchurl, ffmpeg, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext }:
|
2013-02-16 20:48:37 +00:00
|
|
|
|
2015-09-12 06:24:24 +00:00
|
|
|
let version = "1.1.5"; in
|
2013-02-16 20:48:37 +00:00
|
|
|
|
2015-09-12 06:24:24 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-02-16 20:48:37 +00:00
|
|
|
name = "minidlna-${version}";
|
|
|
|
|
2012-06-24 18:24:58 +00:00
|
|
|
src = fetchurl {
|
2015-07-03 21:05:57 +00:00
|
|
|
url = "mirror://sourceforge/project/minidlna/minidlna/${version}/minidlna-${version}.tar.gz";
|
2015-09-12 06:24:24 +00:00
|
|
|
sha256 = "16xb2nz8g1dwcail1zmpj8s426pygz0fdpd6ip6zaamv2q2asxw4";
|
2012-06-24 18:24:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export makeFlags="INSTALLPREFIX=$out"
|
|
|
|
'';
|
|
|
|
|
2015-07-03 21:05:57 +00:00
|
|
|
buildInputs = [ ffmpeg flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext ];
|
2012-06-24 18:24:58 +00:00
|
|
|
|
2016-04-08 20:37:42 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/man/man{5,8}
|
|
|
|
cp minidlna.conf.5 $out/share/man/man5
|
|
|
|
cp minidlnad.8 $out/share/man/man8
|
|
|
|
'';
|
|
|
|
|
2015-09-12 06:24:24 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Media server software";
|
2012-06-24 18:24:58 +00:00
|
|
|
longDescription = ''
|
2013-02-16 20:48:37 +00:00
|
|
|
MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully
|
|
|
|
compliant with DLNA/UPnP-AV clients.
|
2012-06-24 18:24:58 +00:00
|
|
|
'';
|
|
|
|
homepage = http://sourceforge.net/projects/minidlna/;
|
2015-09-12 06:24:24 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2012-06-24 18:24:58 +00:00
|
|
|
};
|
|
|
|
}
|