nixpkgs/pkgs/tools/networking/minidlna/default.nix

37 lines
1.0 KiB
Nix
Raw Normal View History

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