2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, ffmpeg_3, flac, libvorbis, libogg, libid3tag, libexif, libjpeg, sqlite, gettext }:
|
2013-02-16 21:48:37 +01:00
|
|
|
|
2020-11-28 20:55:23 +01:00
|
|
|
let version = "1.3.0"; in
|
2013-02-16 21:48:37 +01:00
|
|
|
|
2015-09-12 08:24:24 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "minidlna";
|
|
|
|
inherit version;
|
2013-02-16 21:48:37 +01:00
|
|
|
|
2012-06-24 20:24:58 +02:00
|
|
|
src = fetchurl {
|
2015-07-03 23:05:57 +02:00
|
|
|
url = "mirror://sourceforge/project/minidlna/minidlna/${version}/minidlna-${version}.tar.gz";
|
2020-11-28 20:55:23 +01:00
|
|
|
sha256 = "0qrw5ny82p5ybccw4pp9jma8nwl28z927v0j2561m0289imv1na7";
|
2012-06-24 20:24:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export makeFlags="INSTALLPREFIX=$out"
|
|
|
|
'';
|
|
|
|
|
2020-06-07 14:39:09 +02:00
|
|
|
buildInputs = [ ffmpeg_3 flac libvorbis libogg libid3tag libexif libjpeg sqlite gettext ];
|
2012-06-24 20:24:58 +02:00
|
|
|
|
2016-04-08 22:37:42 +02: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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Media server software";
|
2012-06-24 20:24:58 +02:00
|
|
|
longDescription = ''
|
2013-02-16 21:48:37 +01:00
|
|
|
MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully
|
|
|
|
compliant with DLNA/UPnP-AV clients.
|
2012-06-24 20:24:58 +02:00
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://sourceforge.net/projects/minidlna/";
|
2015-09-12 08:24:24 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2012-06-24 20:24:58 +02:00
|
|
|
};
|
|
|
|
}
|