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-07-03 21:05:57 +00:00
|
|
|
let version = "1.1.4"; in
|
2013-02-16 20:48:37 +00:00
|
|
|
|
2012-06-24 18:24:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
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";
|
|
|
|
sha256 = "9814c04a2c506a0dd942c4218d30c07dedf90dabffbdef2d308a3f9f23545314";
|
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
|
|
|
|
|
|
|
meta = {
|
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/;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-02-16 20:48:37 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-06-24 18:24:58 +00:00
|
|
|
};
|
|
|
|
}
|